Skip to main content
Drag-and-drop is a very common captcha style on the web. SliderAllWebTask is a generic solver for puzzle-piece captchas: you send the background image (with the puzzle hole) and the display size, and the API returns the target coordinates where the piece must be dropped.
SliderAllWebTask example

1. Create a task

Request
widthView / heightView must match the actual rendered size in the browser, not the original image size. Returned coordinates use this coordinate system.
Response Success:
The server returns errorId = 0 and a taskId when the task is created. Failure:
The server returns errorId = 1 with an errorCode.

2. Get the result

Request
Response Success:
The server returns errorId = 0 and status = ready. Read the answer from solution.rects:
Coordinates are expressed in the widthView × heightView system you sent. If the page renders the image at a different size, scale accordingly before simulating the drag.
Processing:
The server returns status = processing — poll again in ~2 seconds. Failure:
The server returns errorId = 1 when solving fails.