Submission method
Grid Image
Solve image-grid CAPTCHAs (like reCAPTCHA v2 image challenges) by identifying specific tiles according to an instruction. Returns tile indices to click (e.g., [1, 3, 6]).
Languages
Servers
https://ocr.captchaai.com/
- https://ocr.captchaai.com/in.php
- cURL
- JavaScript
- Node.js
- Python
- PHP
- Payload
curl -i -X POST \
https://ocr.captchaai.com/in.php \
-H 'Content-Type: multipart/form-data' \
-F key=string \
-F method=post \
-F img_type=recaptcha \
-F instructions=string \
-F grid_size=3x3 \
-F json=0 \
-F file=stringResponse
{ "status": 1, "request": "0123456789" }
- https://ocr.captchaai.com/res.php
- cURL
- JavaScript
- Node.js
- Python
- PHP
- Payload
curl -i -X POST \
https://ocr.captchaai.com/res.php \
-H 'Content-Type: multipart/form-data' \
-F key=string \
-F action=get \
-F id=string \
-F json=0Response
{ "status": 1, "request": [ 1, 3, 6, 9 ] }