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:
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"
var client = new RestClient("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");
var request =newRestRequest(Method.GET);IRestResponse response =client.Execute(request);