Tasks
Get the result of a task
Polls the result of a previously created task. While solving, status is processing (no solution). When done, status is ready and solution contains the answer whose shape depends on the captcha type (see Solution).
Limit: up to 120 requests per task; exceeding it may temporarily lock the account. Poll at a sane interval (e.g. every 1–3 seconds).
post/getTaskResult
Request body
Example request
{
"clientKey": "API_KEY",
"taskId": 7654321
}Response
Current task state (processing / ready), or a business error in the body (errorId: 1). Invalid key uses 403 and unknown task id uses 404 (below).
Example response
{
"cost": "0.001"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.