Residential & Mobile Proxy Aggregator FAQ
Welcome to the ScrapeOps Residential & Mobile Proxy Aggregator FAQ page. Here you will find answers to the most common questions users have when using the ScrapeOps Residential & Mobile Proxy Aggregator.
Frequently Asked Questions​
Overview​
- What Is The Residential & Mobile Proxy Aggregator?
- How Is The Residential Proxy Aggregator Different To The Proxy API Aggregator?
- What Types Of Proxies Are Available?
Getting Started & Usage​
- How To Use The Residential Proxy Aggregator?
- What Programming Languages Can The Residential Proxy Aggregator Work With?
- Can I Use Residential Proxies With Headless Browsers?
- Do I Need To Disable SSL Certificate Verification?
Proxy Features​
- Do You Support Sticky Sessions?
- How Long Do Sticky Sessions Last?
- What Geotargeting Options Are Available?
- How Does Automatic Provider Switching Work?
Proxy Performance & Errors​
Plans & Billing​
- How Is Usage Measured?
- What Is The Free Trial?
- What Happens If I Run Out Of Bandwidth Before The End Of My Current Subscription?
- How Do I Cancel A Plan?
- How Do I Get A Refund?
- How Do I Change Credit Card Details?
Overview​
What Is The Residential & Mobile Proxy Aggregator?​
The ScrapeOps Residential & Mobile Proxy Aggregator is a proxy service that gives you access to 20+ residential and mobile proxy providers (like Bright Data, Oxylabs, Smartproxy, and more) through a single proxy port.
You only pay for bandwidth consumed, and the system automatically selects the best-performing provider for your use case. Simply configure the proxy port in your scraper or bot, send your requests, and we handle the proxy selection and rotation for you.
How Is The Residential Proxy Aggregator Different To The Proxy API Aggregator?​
The key differences between the two products are:
| Feature | Residential Proxy Aggregator | Proxy API Aggregator |
|---|---|---|
| Pricing | Bandwidth-based (pay per GB) | Request-based (pay per successful request) |
| Integration | Proxy port (standard HTTP proxy) | API endpoint or Proxy port |
| Best For | Headless browsers, bots, apps needing real residential IPs | Web scraping with built-in JS rendering |
| Built-in Features | Raw proxy connection | JavaScript rendering, auto-retry, and more |
The Residential Proxy Aggregator charges per bandwidth used and provides direct proxy connections ideal for headless browsers, bots, and applications requiring real residential IPs. The Proxy API Aggregator charges per request and is optimized specifically for web scraping with built-in features like JavaScript rendering.
What Types Of Proxies Are Available?​
You get access to:
- Residential proxies - Real home IPs from ISPs
- Mobile proxies - 3G/4G/5G connections from mobile carriers
- Different quality tiers - From various providers at different price points
You can select the proxy type that best fits your use case through the proxy string configuration.
Getting Started & Usage​
How To Use The Residential Proxy Aggregator?​
The Residential Proxy Aggregator is accessed via a standard proxy port. To use it, you need an API key that you can obtain by signing up for a free account here.
You then configure your HTTP client or headless browser to use the ScrapeOps proxy port:
- Proxy: residential-proxy.scrapeops.io
- Port: 8181
- Username: scrapeops
- Password: YOUR_API_KEY
Here is some example code showing you how to use the proxy port with Python Requests:
import requests
proxies = {
"http": "http://scrapeops:YOUR_API_KEY@residential-proxy.scrapeops.io:8181",
"https": "http://scrapeops:YOUR_API_KEY@residential-proxy.scrapeops.io:8181"
}
response = requests.get('https://httpbin.org/ip', proxies=proxies, verify=False)
print(response.text)
For more information, check out our Getting Started Guide.
What Programming Languages Can The Residential Proxy Aggregator Work With?​
The Residential Proxy Aggregator can work with all major programming languages, including Python, NodeJs, Golang, Java, PHP, Ruby, C#, R, and more. Since it uses a standard HTTP proxy port format, it's compatible with virtually any HTTP client or library.
Check out the Integration Examples section of our documentation for language-specific examples:
Can I Use Residential Proxies With Headless Browsers?​
Absolutely! Residential proxies work great with Playwright, Puppeteer, Selenium, and other headless browser tools. The proxy configuration is standard HTTP/HTTPS proxy format compatible with virtually any tool or library.
Check out our integration guides for:
Do I Need To Disable SSL Certificate Verification?​
Yes. So that we can properly direct your requests through the proxy port, your code must be configured to not verify SSL certificates.
In Python Requests, this is done with verify=False. Scrapy skips SSL verification by default, so no changes are needed there.
Proxy Features​
Do You Support Sticky Sessions?​
Yes! Sticky proxy sessions allow you to maintain the same IP address across multiple requests. This is useful for:
- Maintaining login sessions
- Following pagination links
- Multi-step form submissions
- Shopping cart operations
To enable sticky sessions, add the sticky_session parameter to your proxy username. For example: scrapeops.sticky_session=7
import requests
proxy = {
'http': 'http://scrapeops.sticky_session=7:YOUR_API_KEY@residential-proxy.scrapeops.io:8181',
'https': 'http://scrapeops.sticky_session=7:YOUR_API_KEY@residential-proxy.scrapeops.io:8181'
}
# These requests will use the same IP address
response1 = requests.get('https://httpbin.org/ip', proxies=proxy, verify=False)
response2 = requests.get('https://httpbin.org/ip', proxies=proxy, verify=False)
For more details, see the Sticky Sessions documentation.