Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
POST https://api.ez-captcha.com/getTaskResult
Content-Type: application/json
 
{
    "clientKey":"YOUR_API_KEY",
    "taskId": "TASKID OF CREATETASK" //TaskID created by createTask api
}

Response

...

Data

Parameter

Type

Description

errorId

Integer

Error message: 0 - no error, 1 - error

errorCode

string

Error code, click here to view all error list

errorDescription

string

Detailed error description

status

string

processing - task is in progress, please try again in 1 seconds

ready - task is complete, find the result in the solution parameter

solution

Object

The recognition result will be different for different types of captcha. For Funcaptcha, the result is token in the object.

solution.token

string

Recognition result: token value, used for POST or simulate d submission to the target website.

It is recommended to use immediately

...