Captcha Solving
Bypass the Captcha challenges on highly protected websites.
Avoid getting your API requests blocked by using auto_solve=1
and enabling the automatic Captcha solving mechanism. Once activated, it requires a CSS selector to wait for, provided by the wait_for_css
parameter. This way, all the intermediary page navigation are automatically handled.
Your full GET request should then be sent to the following address:
https://api.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&url=<TARGETED_URL>&auto_solve=1&wait_for_css=<CSS_SELECTOR>>
Auto Solve Integration Examples
curl --request GET --url "https://api.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&url=https%3A%2F%2Fwww.amazon.com%2Ferrors%2FvalidateCaptcha&auto_solve=1&wait_for_css=%23desktop-grid-1"
Important! The url
parameter has to be encoded.
( i.e. &url=https%3A%2F%2Fwww.amazon.com%2Ferrors%2FvalidateCaptcha )
Last updated