Endpoints
Ungrouped Endpoints 4
What is the reCAPTCHA Solver API?
Create Google reCAPTCHA v2 and v3 solving tasks and poll for a token you can submit on the target page.
reCAPTCHA Solver API is available on the JoJ API marketplace. Subscribe with a single JoJ API key, call it through one gateway, and pay from one wallet — no separate account or contract with the provider.
reCAPTCHA Solver API endpoints
- GET
/Health
Liveness probe. Returns JSON null.
- POST
/recaptchaV2/create_taskCreate reCAPTCHA v2 task
Starts a Google reCAPTCHA v2 solving task. Send the returned task_id to Get Result.
- POST
/recaptchaV3/create_taskCreate reCAPTCHA v3 task
Starts a Google reCAPTCHA v3 solving task. Send the returned task_id to Get Result.
- POST
/get_resultGet Result
Polls a previously created task. Repeat until status is ready.
Frequently asked questions about reCAPTCHA Solver API
How do I get a token?
POST to /recaptchaV2/create_task or /recaptchaV3/create_task with url and key. Then POST the returned task_id to /get_result until status is ready.
What do I send for v3?
The same url and key, plus optional min_score (0.1–0.9, default 0.3) and page_action (must match the site’s grecaptcha.execute action)
How long does a solve take?
Usually 10–40 seconds. Keep polling /get_result while status is processing.