Get Balance API

API EndpointsUpdated 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

FieldTypeDescription
errorIdnumber0 means the request succeeded.
balancenumberCurrent account balance rounded by the API response.
errorCodestring or nullError code when errorId is 1.
errorDescriptionstring or nullHuman-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.