Stripe
SandBaseapi
Published June 21, 2026
About
Access the Stripe API through OAuth (Stripe Connect). Query charges, customers, subscriptions, and balance — powered by Nango Connector Gateway.
Documentation
Stripe Connector
Access the Stripe API through OAuth (Stripe Connect). Query charges, customers, subscriptions, and balance.
Pricing
| Operation | Price |
|---|---|
| Successful API call (2xx) | $0.001 |
| Failed call (4xx/5xx) | Free |
Quick Test (curl)
# List charges
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "stripe", "endpoint": "/v1/charges", "method": "GET", "params": {"limit": 5}}'
# List customers
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "stripe", "endpoint": "/v1/customers", "method": "GET", "params": {"limit": 5}}'
# Retrieve balance
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "stripe", "endpoint": "/v1/balance", "method": "GET"}'
Request Format
POST /v1/run
{
"model": "stripe",
"endpoint": "/v1/charges",
"method": "GET",
"params": {},
"headers": {},
"body": {},
"retries": 0
}
Common Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/charges | List charges |
| GET | /v1/customers | List customers |
| GET | /v1/subscriptions | List subscriptions |
| GET | /v1/balance | Retrieve balance |
📖 Full API reference: Stripe API Docs
Technical Specs
| Spec | Value |
|---|---|
| Auth | OAuth 2.0 (Stripe Connect) |
| Proxy | Nango (auto token refresh) |
| Execution | Sync |
| Rate limit | Inherits Stripe's API limits |
Try Stripe
Test this model in the Sandbase Playground with your own prompts.
Open in Playground