Get Profile API

API EndpointsUpdated 5/4/2026
POST
https://solver.solverify.net/profile

The Solverify Get Profile API returns account balance and active task counters for your API key. Use POST /profile when your dashboard or client application needs both billing and task activity in one response.

Request

{
  "clientKey": "YOUR_API_KEY"
}

Success Response

{
  "errorId": 0,
  "balance": 12.5,
  "pendingCount": 3,
  "processingCount": 1,
  "errorCode": null,
  "errorDescription": null
}

Response Fields

FieldTypeDescription
balancenumberCurrent account balance.
pendingCountnumberNumber of queued tasks for the API key.
processingCountnumberNumber of tasks currently being solved.

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.