Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

This method creates a task for solving selected captcha type. In the parameters you need to pass the client authorization data, typed task data and other optional parameters.

Method address: https://api.capmonster.cloud/createTask
Request format: JSON POST

Request parameters:

Parameter

Type

Required

Purpose

clientKey

String

Yes

Client account key, can be found here

task

Task type object

Yes

Task data. See list of available object descriptions here.

callbackUrl

String

No

Optional web address where we will send result of captcha task processing. Contents are sent by POST request and are same to the contents of getTaskResult method. The content of the response is not checked and you must accept the request in 2 seconds then the connection will be closed.

 Solving the usual captcha with the image

{
    "clientKey":"67b6bcbb1a728ea8d563de6d169a2057",
    "task":
        {
            "type":"ImageToTextTask",
            "body":"BASE64_BODY_HERE!"
        }
}

Response structure:

Parameter

Type

Purpose

errorId

Integer

Error identificator.

0 - no errors, the task has been successfully created, task ID located in taskId property

1 - error, information about it is in the errorCode property

errorCode

String

Error code. Check out errors list.

taskId

Integer

Task ID for future use in getTask method.

Response example:

{
    "errorId": 0,
    "taskId": 7654321
}
  • No labels