EverySolve CAPTCHA API
Coordinate-click CAPTCHA API
EverySolve's Coordinate-click CAPTCHA API returns click positions for your challenge workflow. Send POST /api/v1/captcha with type set to coordinates and the inputs listed below.
A coordinate task represents one or more click locations in an image, independent of any single CAPTCHA vendor. It returns coordinate points rather than rectangles, text, or a drag distance. The caller applies those points to the original image dimensions.
- Endpoint
- POST /api/v1/captcha
- Type
- coordinates
- Per 1,000 successful solutions
- $1.81 per 1,000 successful solutions
Request parameters
Provide body. Optional parameters are comment.
Required parameters
bodyOptional parameters
commentcurl -X POST https://api.everyinfra.com/api/v1/captcha \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"type":"coordinates","body":"<body>"}'
How to recognize Coordinate-click CAPTCHA
A coordinate task represents one or more click locations in an image, independent of any single CAPTCHA vendor.
What makes Coordinate-click CAPTCHA different
It returns coordinate points rather than rectangles, text, or a drag distance. The caller applies those points to the original image dimensions.
Where the Coordinate-click CAPTCHA parameters come from
The body field contains the source image; the comment can preserve the target instruction when the image alone is ambiguous.
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.
commentOptional- The visible instruction describing what to click or enclose in the source image.
What the API returns
The Coordinate-click 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 Coordinate-click CAPTCHA API
- 01Read GET /api/v1/captcha/types and select the
coordinatesentry. - 02Send
type: "coordinates"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.
Coordinate-click CAPTCHA integration questions
How can I identify Coordinate-click CAPTCHA before choosing a type?
A coordinate task represents one or more click locations in an image, independent of any single CAPTCHA vendor. Use coordinates only after those signals match the target challenge.
Which target-page values belong in a Coordinate-click CAPTCHA request?
The body field contains the source image; the comment can preserve the target instruction when the image alone is ambiguous. Provide body. Optional parameters are comment.
What does Coordinate-click CAPTCHA return, and what should not be confused with it?
The Coordinate-click CAPTCHA API returns click positions in coordinates. Its solution format is points. It returns coordinate points rather than rectangles, text, or a drag distance. The caller applies those points to the original image dimensions.
Which external source explains the Coordinate-click CAPTCHA integration?
Tencent Cloud's CAPTCHA documentation shows click-selection as one vendor implementation of this general task family. [Open the Coordinate-click CAPTCHA reference](https://cloud.tencent.com/document/product/1110/36334). EverySolve-specific fields and live availability still come from the type catalog.