Skip to content

Balance

Get account balance

GET/balance

Returns the available credit balance for the authenticated API key. The returned `balance` equals total credits minus credits currently reserved for in-progress tasks.

Responses

For standard error codes, see Error Handling.

Response Schema
200application/json
balance
required
number(Balance)

Available credit balance. Equals total account credits minus credits currently reserved for in-progress tasks.

curl https://api.v2fun.ai/api/v1/balance \
  -H "Authorization: Bearer $YOUR_API_KEY"
Response 200 OK
{
  "balance": 0
}