Get Profile API
API Endpoints•Updated 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
| Field | Type | Description |
|---|---|---|
balance | number | Current account balance. |
pendingCount | number | Number of queued tasks for the API key. |
processingCount | number | Number 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.