Automatically Solve Captchas
The following captchas can be automatically detected and solved:
- reCAPTCHA v2 and v3 (click, invisible and enterprise)
- hCaptcha (normal and invisible)
- Cloudflare (turnstile and challenge page)
Even though we take extensive measures avoid detection and triggering a captcha challenge, sometimes you will be presented with a captcha blocking you from accessing the website’s data. In other circumstances, a captcha might just a prerequisite for accessing parts of a website that you cannot avoid. By simply enabling the solveCaptchas
flag we will attempt to detect and solve any number of captchas on the page before responding with the content including waiting for redirects to complete.
Do not enable the
solveCaptchas
flag unless you need it. The detection mechanisms can dramatically slow down a page unnecessarily slow down your response times
Solving captchas only works when using a real browser. If you do not provide the useBrowser
flag it will be enabled for you automatically.
If you need a specific captcha provider solved, please contact us at hello@scrapi.tech so we can prioritize it for you.
Endpoint
Example Request
GET https://api.scrapi.tech/v1/scrape?url=https://deventerprise.com&useBrowser=true&solveCaptchas=true
POST https://api.scrapi.tech/v1/scrape
{
"url": "https://deventerprise.com",
"useBrowser": true,
"solveCaptchas": true
}
Testing
If you want to test this request or a variation of it, head to the Playground or the OpenAPI page.