Active Tasks API
API Endpoints•Updated 5/4/2026
POST
https://solver.solverify.net/activeTasks
The Solverify Active Tasks API returns pending and processing task counts grouped by websiteURL. Use POST /activeTasks to monitor queue pressure, identify busy target websites, and manage task volume before creating more tasks.
Request
{
"clientKey": "YOUR_API_KEY"
}
Success Response
{
"errorId": 0,
"websites": [
{
"website_url": "https://example.com",
"pending_count": 5,
"processing_count": 2,
"total_count": 7
}
],
"errorCode": null,
"errorDescription": null
}
Response Fields
| Field | Type | Description |
|---|---|---|
websites | array | List of active task groups by target website URL. |
website_url | string | Website URL used when the task was created. |
pending_count | number | Number of queued tasks for the website. |
processing_count | number | Number of tasks currently being solved for the website. |
total_count | number | Sum of pending and processing tasks for the website. |
Possible Errors
ERROR_INVALID_REQUEST- missing or invalid JSON fields.ERROR_INVALID_KEY- API key is invalid.
For the full list of error responses, see Solverify API Error Codes.