Skip to main content

Residential & Mobile Proxy Aggregator

ScrapeOps Residential & Mobile Proxy Aggregator is an easy to use proxy solution that gives you access to the best performing residential and mobile proxies via a single proxy port. We take care of finding the best proxies, so you can focus on the data.

Use over +20 residential & mobile proxy providers from a single proxy port. Get the best reliablity & performance at the lowest price.

BETA: Residential & Mobile Proxy Aggregator

The Residential Proxy Aggregator is current in beta so there might be still some bugs and not all the functionality has been enabled at the moment. If notice any bugs or you require specific functionality then just let our support team know and we can look into it for you.


Integration Guides

The following are quick start integration guides for the most popular programming languages:


Authorisation: API Key

To use the ScrapeOps proxy, you first need an API key which you can get by signing up for a free account here.

Your API key must be included with every request using the api_key query parameter otherwise the proxy port will return a 403 Forbidden Access status code.


Integration Method: Proxy Port

To make requests you need send the URL you want to scrape to set their proxy port to the ScrapeOps Residential Proxy Port http://scrapeops:YOUR_API_KEY@residential-proxy.scrapeops.io:8181

The username for the proxy is scrapeops and the password is your API key.


curl -x "http://scrapeops:YOUR_API_KEY@residential-proxy.scrapeops.io:8181" "https://httpbin.org/ip"


Here are the individual connection details:

  • Proxy: residential-proxy.scrapeops.io
  • Port: 8181
  • Username: scrapeops
  • Password: YOUR_API_KEY

Below we have an example of how you would use our proxy port with Python Requests.


import requests

proxies = {
"http": "http://scrapeops:YOUR_API_KEY@residential-proxy.scrapeops.io:8181"
}
response = requests.get('https://httpbin.org/ip', proxies=proxies, verify=False)
print(response.text)

SSL Certificate Verification

Note: So that we can properly direct your requests through the proxy port, your code must be configured to not verify SSL certificates.

The ScrapeOps Proxy supports GET and POST requests. For information on how to use POST requests then check out the documentation here.


Dashboard

You can monitor your scraping performance using the Proxy Dashboard.