Docs
API Reference

Balance

Read the authenticated account's prepaid USD balance.

GET /v1/billing/balance

Returns the current prepaid account balance. Currency is explicitly returned as USD; the contract does not expose organization budgets or future quota policy.

Examples

1curl https://qufas-ai.vercel.app/v1/billing/balance \2  -H "Authorization: Bearer $QUFAS_API_KEY"

Response

200 JSON
1{2  "object": "balance",3  "balance": 20.75,4  "currency": "USD"5}

Was this page helpful?