Proxy type

Many websites employ sophisticated bot detection systems that can easily identify and block basic proxy connections. To prevent this, ScrapeAutomate gives flexibility in choosing the type of proxies you want to use. ScrapeAutomate has a variety of proxies available, and we also handle the proxy rotation for you to ensure that the same proxy isn’t being used twice.

To customize the proxy type, use the proxy_type query parameter to select better proxies. We use datacenter proxies by default, but you can specify proxies like residential, datacenter, or other available options. The types of proxies are entirely dynamic, and based on the proxy type, there could be a credit multiplier, which you can easily view on the dashboard builder page.

curl --request GET \
    --url 'https://app.scrapeautomate.com/api/scraper?api_key=<exampleToken>&render=false&url=https%3A%2F%2Fexample.com%2F&proxy_type=residential'  

Proxy country

In some cases, the data or websites you want to scrape might be restricted by region, meaning it’s only available in a specific country or region. ScrapeAutomate allows you to specify the country you want to make a request from using the proxy_country query parameter.

To use this feature, provide the country code corresponding to the desired location. For example, setting proxy_country=jp will route the request through Japan, allowing you to scrape data available only in that region.

This parameter can be used independently or in combination with proxy_type if you want to specify both the proxy type and location. If proxy_type is not specified, datacenter proxies will be used by default.

Here is a demo:

curl --request GET \
    --url 'https://app.scrapeautomate.com/api/scraper?api_key=<exampleToken>&render=false&url=https%3A%2F%2Fexample.com%2F&proxy_country=jp'  

The proxy_country value is retrieved from the database. Let’s say the specified country code does not exist in the database. In that case, the request will fail with an error that shows the proxy is unavailable.

Frequently Asked Questions (FAQ)