EverySolve CAPTCHA API
Temu CAPTCHA API
EverySolve's Temu CAPTCHA API returns click positions for your challenge workflow. Send POST /api/v1/captcha with type set to temu and the inputs listed below.
The Temu task matches an ordered parts array against a main challenge image. It returns coordinates in the same order as the candidate images in parts. It is not the single-image coordinate task and does not return a site token.
- Endpoint
- POST /api/v1/captcha
- Type
- temu
- Per 1,000 successful solutions
- $1.53 per 1,000 successful solutions
Request parameters
Provide body and parts. This type does not declare optional parameters.
Required parameters
bodypartsOptional parameters
curl -X POST https://api.everyinfra.com/api/v1/captcha \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"type":"temu","body":"<body>","parts":"<parts>"}'
How to recognize Temu CAPTCHA
The Temu task matches an ordered parts array against a main challenge image.
What makes Temu CAPTCHA different
It returns coordinates in the same order as the candidate images in parts. It is not the single-image coordinate task and does not return a site token.
Where the Temu CAPTCHA parameters come from
The body field contains the main image, and parts contains the candidate images in their original order.
bodyRequired- The challenge payload itself. Its media type follows this page's task: image data for visual tasks and audio data for the audio task.
partsRequired- The ordered candidate images that must be matched against the main image in the request body.
What the API returns
The Temu CAPTCHA API returns click positions in coordinates. Its solution format is points. Apply the returned positions to the source image or click workflow using the coordinate or grid format declared by the type.
- Solution shape
- points
- Solution fields
coordinates
How to use the Temu CAPTCHA API
- 01Read GET /api/v1/captcha/types and select the
temuentry. - 02Send
type: "temu"and the required parameters to POST /api/v1/captcha. - 03Read click positions from
coordinates. - 04Apply the returned positions to the source image or click workflow using the coordinate or grid format declared by the type.
Billing and availability
EverySolve charges only when a solution is delivered successfully. Unsuccessful attempts are refunded automatically. Read available and the price fields from GET /api/v1/captcha/types at request time rather than treating them as static page content.
Temu CAPTCHA integration questions
How can I identify Temu CAPTCHA before choosing a type?
The Temu task matches an ordered parts array against a main challenge image. Use temu only after those signals match the target challenge.
Which target-page values belong in a Temu CAPTCHA request?
The body field contains the main image, and parts contains the candidate images in their original order. Provide body and parts. This type does not declare optional parameters.
What does Temu CAPTCHA return, and what should not be confused with it?
The Temu CAPTCHA API returns click positions in coordinates. Its solution format is points. It returns coordinates in the same order as the candidate images in parts. It is not the single-image coordinate task and does not return a site token.
Which external source explains the Temu CAPTCHA integration?
The linked Temu page is first-party deployment context, not a public solver specification. [Open the Temu CAPTCHA reference](https://www.temu.com/). EverySolve-specific fields and live availability still come from the type catalog.