Tasks
Create a captcha-solving task
Submits a captcha for solving. The task object is a discriminated union keyed by task.type (and, for CustomTask, additionally by task.class). On success returns a taskId to be polled with getTaskResult.
post/createTask
Request body
Example request
{
"clientKey": "API_KEY",
"task": {
"proxyAddress": "8.8.8.8",
"proxyPort": 8080
}
}Response
Task accepted, or a business error encoded in the body (errorId non-zero). Auth and balance failures use 403 / 402 (below); other errors come back here with errorId: 1.
Example response
{
"taskId": 7654321
}Changes
No recorded changes to this endpoint across all 1 revision of this API.