# Retrieve balance Retrieves the current account balance, based on the authentication that was used to make the request. Endpoint: GET /balance Version: 1.0 ## Header parameters: - `cc-api-key` (string, required) Chaching API Key ## Response 200 fields (application/json): - `object` (string, required) Type of object returned by Stripe. Example: "balance" - `available` (array, required) List of balances available for payout. Example: [{"amount":4097256,"currency":"usd","source_types":{"card":4097256}}] - `available.amount` (number, required) Amount of funds available or pending in this currency. Example: 358511 - `available.currency` (string, required) Three-letter ISO currency code. Example: "usd" - `available.source_types` (object, required) Breakdown of the balance by payment source type. Example: {"card":4097256} - `available.source_types.card` (number, required) Total amount coming from card payments. Example: 4097256 - `available.source_types.bank_account` (number) Total amount coming from legacy US ACH payments. - `available.source_types.fpx` (number) Total amount coming from FPX payments. - `pending` (array, required) List of pending (not yet available) balance amounts. Example: [{"amount":5169,"currency":"usd","source_types":{"card":5169}}] - `livemode` (boolean, required) Indicates whether the balance belongs to a live (production) account. - `refund_and_dispute_prefunding` (object, required) Details about prefunded amounts for refunds and disputes. Example: {"available":[{"amount":0,"currency":"usd"}],"pending":[{"amount":0,"currency":"usd"}]} - `refund_and_dispute_prefunding.available` (array, required) List of available prefunded balances for refunds and disputes. Example: [{"amount":0,"currency":"usd"}] - `refund_and_dispute_prefunding.available.amount` (number, required) Amount of prefunding for this currency. - `refund_and_dispute_prefunding.available.currency` (string, required) Currency of the prefunded amount. Example: "pln" - `refund_and_dispute_prefunding.pending` (array, required) List of pending prefunded balances for refunds and disputes. Example: [{"amount":0,"currency":"usd"}]