Skip to main content
Picking 2 objects on the web is a common captcha type on TikTok.
Tiktok select object modal

Example of the 'Pick 2 objects with the same shape' TikTok captcha

1. Create the task

Request

widthView and heightView are the image dimensions as rendered on the page (not the original image size). Right-click the image → Inspect element to read the correct values.

Response

Success:
The server returns errorId = 0 with a taskId when the task is created successfully. Failure:
The server returns errorId = 1 and the corresponding errorCode.

2. Get the result

Request

Response

Success:
The server returns errorId = 0 and status = ready. Read the two click points from solution.pointA and solution.pointB.
x and y are given in the rendered image coordinate system (based on widthView × heightView). Click those two points and then press Confirm.
Processing:
The server returns errorId = 0 and status = processing. Wait 2 seconds and poll again. Failure:
The server returns errorId = 1 — see Error Codes for handling.