ReCaptcha v2 Image Solver
Select matching images in ReCaptcha v2 grids (cars, buses, traffic lights, etc.) using the ReCaptchaV2Image task type. Returns zero-based indices of the correct tiles.
Create Task
Send base64-encoded image tiles and the question prompt.
POST
/createTaskHostapi.captchasonic.com
Content-Typeapplication/json
{
"apiKey": "YOUR_API_KEY",
"task": {
"type": "ReCaptchaV2Image",
"question": "Select all crosswalks",
"queries": ["BASE64_IMG_1", "BASE64_IMG_2", "BASE64_IMG_3"]
}
}
Response
{
"code": 200,
"msg": "",
"answers": [0, 3, 7]
}
answerscontains zero-based indices of the images that match the question.
Task Parameters
| Property | Type | Required | Description |
|---|---|---|---|
type | string | β | ReCaptchaV2Image or ReCaptchaV2Classification |
question | string | β | The challenge text (e.g. "Select all crosswalks") |
queries | string[] | β | Base64-encoded grid tile images |
API Playground
POST
Log in to auto-fill your API key
Payload
Response
Hit Send to see response
β + Enter
Parameters
Error Codes
terminal