Temu CAPTCHA
Image-based method to bypass Temu CAPTCHA
- TemuImageTask - we use the
image
(image in base64 format) andparts
- images of the response parts that need to be moved.
You need to get all the images and convert them to Base64-encoded strings.
TemuCaptchaTask task type specification
Property | Type | Required | Description |
---|---|---|---|
type | String | Yes | Task type: TemuCaptchaTask |
image | String | Yes | Main background image as base64-encoded string |
parts | Array | Yes | An array of movable image pieces in base64 format |
Request examples
Method: createTask
API endpoint: https://api.2captcha.com/createTask
TemuImageTask
{
"clientKey": "YOUR_API_KEY",
"task": {
"type":"TemuImageTask",
"image":"/9j/4AAQSkZJRg......",
"parts":[
"part1_b64",
"part2_b64",
"part3_b64"
]
}
}
The query will return the ID of your captcha, which should be used to get the result.
{
"errorId": 0,
"taskId": 80306543329
}
Response example
Method: getTaskResult
API endpoint: https://api.2captcha.com/getTaskResult
{
"cost": "0.0012",
"createTime": 1754563182,
"endTime": 1754563190,
"errorId": 0,
"ip": "46.53.232.76",
"solution": {
"coordinates": [
{
"x": 155,
"y": 358
},
{
"x": 152,
"y": 153
},
{
"x": 251,
"y": 333
}
]
},
"solveCount": 1,
"status": "ready"
}
Use the received coordinates to position the image pieces correctly.