| [ Web Proxy ] |
| Viewing: https://docs.stripe.com/api/balance | [Back] [Original] |
This is an object representing your Stripe balance. You can retrieve it to see the balance currently on your Stripe account.
The top-level available and pending comprise your payments balance.
Related guide: Balances and settlement time, Understanding Connect account balances
Available funds that you can transfer or pay out automatically by Stripe or explicitly through the Transfers API or Payouts API. You can find the available balance for each currency and payment type in the source_types property.
Funds that arent available in the balance yet. You can find the pending balance for each currency and each payment type in the source_types property.
{ "object": "balance", "available": [ { "amount": 666670, "currency": "usd", "source_types": { "card": 666670 } } ], "connect_reserved": [ { "amount": 0, "currency": "usd" } ], "livemode": false, "pending": [ { "amount": 61414, "currency": "usd", "source_types": { "card": 61414 } } ]}Retrieves the current account balance, based on the authentication that was used to make the request. For a sample request, see Accounting for negative balances.
No parameters.
Returns a balance object for the account that was authenticated in the request.
{ "object": "balance", "available": [ { "amount": 666670, "currency": "usd", "source_types": { "card": 666670 } } ], "connect_reserved": [ { "amount": 0, "currency": "usd" } ], "livemode": false, "pending": [ { "amount": 61414, "currency": "usd", "source_types": { "card": 61414 } } ]}| Web Proxy Viewer | New URL | Original Page |