Skip to main content
GET
/
v1
/
balance
Get account balance
curl --request GET \
  --url 'https://api.debounce.io/v1/balance/?api='
{
  "balance": 1986406
}
The Account Balance endpoint returns the number of remaining validation credits in your DeBounce account. Use this endpoint to:
  • Check available credits before running validations
  • Monitor credit usage programmatically
  • Prevent interruptions in automated workflows

Response

The response is a simple JSON object containing only your current credit balance. Example:
{
  "balance": "1087306"
}
This endpoint is read-only and always returns the balance as a string value.

Authorizations

api
string
query
required

API key for authentication

Query Parameters

api
apiKey
required

Your DeBounce API key

Response

Account balance retrieved successfully

success
enum<integer>
required

Whether the request was successful

Available options:
0,
1
balance
integer

Current account balance

Required range: x >= 0