Get Balance API
API Endpoints•Updated 5/4/2026
POST
https://solver.solverify.net/getBalance
The Solverify Get Balance API returns the current account balance for your API key. Use POST /getBalance before creating tasks when you need to check available credit, display account usage, or prevent failed task creation from insufficient funds.
Request
{
"clientKey": "YOUR_API_KEY"
}
Success Response
{
"errorId": 0,
"balance": 5.1225,
"errorCode": null,
"errorDescription": null
}
Response Fields
| Field | Type | Description |
|---|---|---|
errorId | number | 0 means the request succeeded. |
balance | number | Current account balance rounded by the API response. |
errorCode | string or null | Error code when errorId is 1. |
errorDescription | string or null | Human-readable error message when available. |
Possible Errors
ERROR_INVALID_REQUEST- missing or invalid JSON fields.ERROR_INVALID_KEY- API key is invalid.ERROR_USER_NOT_FOUND- API key exists but the profile cannot be found.
For the full list of error responses, see Solverify API Error Codes.