Premium Residential Proxies
You can use this feature to extract data from hard-to-scrape websites. You can access this feature by passing premium=true. By default, this feature will use USA residential proxies. If you want to use some other country then you can refer to Geotargeting section.
Using this feature will cost you 10 credits per request and 25 credits if used with JS rendering.
API Example
curl "https://api.scrapingdog.com/scrape?api_key=5e5a97e5b1ca5b194f42da86d646&url=http://httpbin.org/ip&premium=true"import requests
url = "https://api.scrapingdog.com/scrape"
api_key = "5e5a97e5b1ca5b194f42da86d646"
target_url = "http://httpbin.org/ip"
premium = "true"
params = {
"url": target_url,
"api_key": api_key, # Pass the API key as a parameter
"premium": premium
}
response = requests.get(url, params=params)
if response.status_code == 200:
print(response.text)
else:
print(f"Request failed with status code: {response.status_code}")
Last updated