Request
This endpoint takes no request parameters.
Response
200 — OK
boolean
true when the balance was retrieved successfully.object
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
GET /wallet/balance — retrieve your current estudjo credit balance. Returns the balance as a decimal string. Requires X-Api-Key.
| Method | GET |
| URL | https://v1.api.estudjo.com/wallet/balance |
| Auth | X-Api-Key header |
curl https://v1.api.estudjo.com/wallet/balance \
-H 'X-Api-Key: YOUR_API_KEY'
{
"success": true,
"data": {
"balance": "96.00"
}
}
true when the balance was retrieved successfully.Show data
"96.00"). Returned as a string to preserve exact decimal precision.insufficient_credits error (402) may still briefly reserve credits before returning — your balance will self-correct, but factor in a short delay when checking and immediately re-submitting.