Bypass Captcha
You can enable Stealth Mode to bypass Cloudflare or other bot protection systems. Simply set stealth_mode=true in your request parameters to activate it. Each request in Stealth Mode costs 10 credits.
API Example
curl "https://api.scrapingdog.com/scrape?api_key=5e3a0e5a97e5b1ca5b194f42da86&url=http://httpbin.org/ip&stealth_mode=true"import requests
url = "https://api.scrapingdog.com/scrape"
params = {
"api_key": "5e3a0e5a97e5b1ca5b194f42da86",
"url": "http://httpbin.org/ip",
"stealth_mode": "true"
}
response = requests.get(url, params=params)
print(response.text)
import axios from "axios";
const url = "https://api.scrapingdog.com/scrape";
const params = {
api_key: "5e3a0e5a97e5b1ca5b194f42da86",
url: "http://httpbin.org/ip",
stealth_mode: "true",
};
axios
.get(url, { params })
.then((response) => {
console.log(response.data);
})
.catch((error) => {
console.error("Error:", error.message);
});
Last updated