Active Tasks API

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

FieldTypeDescription
websitesarrayList of active task groups by target website URL.
website_urlstringWebsite URL used when the task was created.
pending_countnumberNumber of queued tasks for the website.
processing_countnumberNumber of tasks currently being solved for the website.
total_countnumberSum 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.