Chaching is a modern subscription-billing platform designed to simplify product management, customer lifecycle workflows, and recurring payments. It combines a clean dashboard for business users with a powerful API built for developers who need full automation and control.
Chaching API (1.0)
- Mock serverhttps://chaching.redocly.app/_mock/developer-guide/api/balance
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://chaching.redocly.app/_mock/developer-guide/api/balance \
-H 'cc-api-key: string'Balance
List of balances available for payout.
Example: [{"amount":4097256,"currency":"usd","source_types":{"card":4097256}}]
Amount of funds available or pending in this currency.
Example: 358511
Breakdown of the balance by payment source type.
Example: {"card":4097256}
List of pending (not yet available) balance amounts.
Example: [{"amount":5169,"currency":"usd","source_types":{"card":5169}}]
Amount of funds available or pending in this currency.
Example: 358511
Breakdown of the balance by payment source type.
Example: {"card":4097256}
Indicates whether the balance belongs to a live (production) account.
Example: false
Details about prefunded amounts for refunds and disputes.
Example: {"available":[{"amount":0,"currency":"usd"}],"pending":[{"amount":0,"currency":"usd"}]}
List of available prefunded balances for refunds and disputes.
Example: [{"amount":0,"currency":"usd"}]
List of pending prefunded balances for refunds and disputes.
Example: [{"amount":0,"currency":"usd"}]
Response
application/json
{ "object": "balance", "available": [ { … } ], "pending": [ { … } ], "livemode": false, "refund_and_dispute_prefunding": { "available": [ … ], "pending": [ … ] } }