Captcha Solving
Bypass the Captcha challenges on highly protected websites.
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%2F2captcha.com%2Fdemo%2Frecaptcha-v2-callback&render_js=1&device=none&auto_solve=1&wait_for_css=p[class*=_successMessage]&timeout=60000"const http = require("https");
const options = {
"method": "GET",
"hostname": "api.webscrapingapi.com",
"port": null,
"path": "/v1?api_key=<YOUR_API_KEY>&url=https%3A%2F%2F2captcha.com%2Fdemo%2Frecaptcha-v2-callback&render_js=1&device=none&auto_solve=1&wait_for_css=p[class*=_successMessage]&timeout=60000",
"headers": {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();Last updated