getTaskResult#


Returns the results of the task.
The result format depends on the task type and is Description in the task specification. .

API endpoint: https://api.nextcaptcha.com/getTaskResult

method: POST

Content type: application/json

Request properties#

nametypeRequiredDescription
clientKeyStringYesYour API key
taskIdIntegerYestask id

Request example#

{
  "clientKey": "api key",
  "taskId": 1781234567890
}

Response example#

Processing#

{
  "errorId": 0,
  "status": "processing"
}

Task processing failed#

{
  "errorId": 12,
  "errorCode": "ERROR_CAPTCHA_UNSOLVABLE",
  "errorDescription": "captcha could not be solved,because proxy is not allowed for this task"
}

Task completed#

{
  "errorId": 0,
  "status": "ready",
  "solution": {
    "gRecaptchaResponse": "03AOLTBLR8z..."
  }
}