Stripe logo

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

OperationPrice
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

MethodEndpointDescription
GET/v1/chargesList charges
GET/v1/customersList customers
GET/v1/subscriptionsList subscriptions
GET/v1/balanceRetrieve balance

📖 Full API reference: Stripe API Docs

Technical Specs

SpecValue
AuthOAuth 2.0 (Stripe Connect)
ProxyNango (auto token refresh)
ExecutionSync
Rate limitInherits Stripe's API limits

Try Stripe

Test this model in the Sandbase Playground with your own prompts.

Open in Playground