Residential · Buying guide
Residential Proxies
Residential proxies route your traffic through real household IP addresses handed out by consumer ISPs, so target sites see an ordinary broadband customer instead of a server.
- Typical price
- $1.75 – $15 / GB
- IP trust
- Very high
- Best for
- Hardened scraping · Social media · E-commerce · Ad verification
What residential proxies are
A residential proxy network is a pool of consumer devices — routers, phones, desktop apps — that forward requests on your behalf. Because the exit IP belongs to a retail ISP, its reputation score sits far above any datacenter range, which is why residential IPs still get through anti-bot walls that block cloud ASNs outright.
How to buy and configure them
Pools are sourced through SDK partnerships, opt-in bandwidth-sharing apps and peer networks. You authenticate by user:pass or IP whitelist against a single gateway endpoint, then steer the exit with parameters for country, state, city, ASN and session ID. Rotating sessions issue a fresh IP on every request; sticky sessions hold one IP for 1–30 minutes so logins and carts survive.
When to use them (and when not to)
Use residential whenever the target scores IP reputation: search results, marketplaces, sneaker and ticket sites, travel aggregators, social platforms and any login flow. Skip it for bulk crawling of tolerant sites — you will pay per-GB rates for pages datacenter IPs fetch fine.
The 2026 residential proxies market, in numbers
The residential proxy market entered 2026 consolidated at the top and crowded at the bottom. Four or five networks own the infrastructure that most of the market resells, which is why a dozen brands quote suspiciously similar per GB rates. The measurable differences show up in three places: the share of the pool that is actually online when you call the gateway, how quickly a flagged exit is retired, and whether the vendor will show you per-request logs when a crawl degrades.
Our working numbers for this category are a 620 – 1,300 ms median round trip, 96 – 99.9% on tier-1 targets, and pools advertised between 8M – 150M IPs. Treat the pool figure as marketing. What determines your success rate is the live concurrent subset in the specific country you target — a 100M-IP network with 4,000 live exits in Portugal will underperform a 10M-IP network that keeps 40,000 Portuguese peers online.
Billing is metered bandwidth, tiered by monthly commitment, priced in the $1.75 – $15 / GB range. Model your spend on payload, not page count: one JavaScript-heavy product page can pull 2–4 MB through the proxy, so a "cheap" per-unit rate turns expensive the moment you render assets you never parse.
| Metric | Expected range | What it actually tells you |
|---|---|---|
| Median latency (10-region) | 620 – 1,300 ms | Peer devices add a real-world hop |
| Success rate, hardened targets | 96 – 99.9% | Depends far more on pool hygiene than on pool size |
| Typical entry price | $1.00 – $8.40 / GB | Volume tiers cut 40–70% off list |
| Pool size range | 8M – 150M IPs | Only the live subset matters, not the headline |
| Session control | Rotating + sticky 1–30 min | Sticky TTL is the number to verify |
| Concurrency | Unlimited on most gateways | Some budget vendors silently cap threads |
How the leading residential networks measure up
We test every network on the same harness: ten regions, a fixed target set spanning search results, a major marketplace, a Cloudflare-protected page and a plain JSON API, 1,000 requests per region, 30-second timeout, three retries. Latency below is the end-to-end median through the gateway, not a ping to the front door.
In the current cycle Oxylabs returned the fastest median at 620 ms, while IPFly holds the lowest entry rate at $0.80/GB. That pairing is the whole decision in miniature: on tolerant targets the cheaper network costs you nothing measurable, and on hardened targets the faster, better-maintained pool pays for itself in retries you never issue.
Run your own trial before committing. A vendor that will not issue a 1–5 GB trial against your real targets is asking you to buy their marketing copy, and the two-week test costs less than a single bad month.
| Provider | From | Pool | Median latency | Coverage | Score |
|---|---|---|---|---|---|
| Oxylabs | $8.00/GB | 100M+ | 620 ms | 195 countries | 9.8 |
| Bright Data | $8.40/GB | 150M+ | 680 ms | 195 countries | 9.6 |
| Smartproxy | $7.00/GB | 65M+ | 810 ms | 195 countries | 9.3 |
| NodeMaven | $3.99/GB | 30M+ | 700 ms | 150 countries | 9.3 |
| SOAX | $6.60/GB | 191M+ | 890 ms | 195 countries | 9.1 |
| IPFly | $0.80/GB | 90M+ | 620 ms | 190 countries | 9.1 |
What residential proxies really cost
Nobody pays list price for residential proxies. Published rates in the $1.75 – $15 / GB band assume no commitment. Once you can forecast monthly usage, the same vendor will typically move 30–60%, and will often throw in static IPs, a higher sticky-session TTL or a sandbox sub-account rather than cutting the headline rate — which is frequently the better trade.
Before signing, run the arithmetic on your own traffic. Block images, fonts, media and analytics beacons at the client; use conditional requests where the target honours ETags; and cap retries with exponential backoff so a broken selector cannot burn a month of budget overnight. Teams that instrument bytes-per-successful-record usually cut spend 40–70% without changing vendor.
- Measure cost per successful record, never cost per request
- Block non-essential asset types at the browser or client layer
- Cap and back off retries — silent retry storms are the top overspend cause
- Ask for unused-volume rollover before you ask for a discount
- Keep a second vendor provisioned at minimum spend as a failover
| Model | How it prices | Fits | Watch out for |
|---|---|---|---|
| Pay as you go | No commitment, highest unit rate | Testing, one-off jobs | Expect a 2–4x premium |
| Monthly commitment | Tiered discount by volume | Steady production workloads | The sweet spot for most teams |
| Annual prepay | 30–60% off list | Predictable, funded projects | Ask for rollover of unused units |
| Dedicated / per-unit | Fixed cost, unmetered traffic | Accounts, dashboards, long sessions | Verify the replacement policy |
| Enterprise contract | Custom rate + SLA | Regulated or high-volume buyers | Negotiate success rate, not just price |
Setting up residential proxies correctly
Every credible vendor in this category authenticates by username/password or IP whitelist against a single gateway host, and encodes routing options — country, city, ASN, session ID — inside the username. Rotation here is per request, or sticky 1–30 min. Get the session semantics right on day one: a rotating credential used for a logged-in flow produces a stream of re-authentication challenges that looks exactly like credential stuffing to the target.
Two configuration mistakes account for most "the proxies do not work" tickets. The first is local DNS resolution, which leaks your real resolver and often your region — use the proxy's own resolver or a SOCKS5h endpoint so lookups happen at the exit. The second is a timeout budget shorter than the pool's own connect time; with medians around 620 – 1,300 ms, a 5-second timeout will discard perfectly good exits and inflate your apparent failure rate.
Instrument from the start. Log the exit IP, country, HTTP status, byte count and elapsed time for every request into a table you can group by. Without that, you cannot tell a bad pool from a bad selector, and you will change vendor when you should have changed your parser.
Gateway quick start
# Python: rotating gateway + sticky session, with retry budget
import requests, uuid
BASE = "http://{user}:{pw}@gate.provider.net:7777"
def session_proxy(country="us", ttl_id=None):
sid = ttl_id or uuid.uuid4().hex[:8]
url = BASE.format(user=f"USER-country-{country}-session-{sid}", pw="PASS")
return {"http": url, "https": url}
r = requests.get("https://example.com/",
proxies=session_proxy("us"), timeout=30)
print(r.status_code, r.elapsed.total_seconds())How to choose a residential provider
Shortlist against evidence you can verify in a trial, not against a feature grid. Every network claims ethical sourcing, huge pools and 99.9% uptime; almost none publish the live-exit counts, subnet spread or ban-retirement policy that would let you check. Ask for those numbers in writing during the trial, and treat a refusal as an answer.
Weight the criteria to your workload. A team scraping public catalogues should optimise cost per successful record and concurrency ceiling. A team running hardened scraping should optimise IP stability, replacement policy and support response time, and should be willing to pay several times more per unit for them.
- Live exits in your target countries — not the global pool headline
- Documented session control: rotation interval and maximum sticky TTL
- Concurrency ceiling in writing, plus what happens when you exceed it
- Subnet and ASN diversity, especially for residential ranges
- Ban handling: how fast a flagged exit is retired and replaced
- Per-request logs you can export for post-mortems
- Sourcing and compliance documentation (consent, opt-out, SOC 2 where relevant)
- Trial terms: volume, duration and whether unused units expire
- Support: named channel, response SLA, and an escalation path that is not a chatbot
Workload playbooks for residential proxies
The same pool behaves differently depending on what you point it at. These are the configurations we run for the workloads this category is bought for — each one is a starting point you should re-tune after a week of real traffic.
Hardened scraping. Against Cloudflare, DataDome, PerimeterX and Akamai, the IP is only a third of the signal. Pair the pool with a real browser engine, consistent TLS/JA4 fingerprints, and header ordering that matches the user agent you claim. Rotate identity as a bundle — IP, fingerprint, cookie jar and user agent together — because a fresh IP carrying last session's fingerprint is worse than no rotation at all.
Social media. Platform risk engines score IP stability, not IP novelty. Map one identity to one exit and hold it for months, warm new accounts over 7–14 days of light human-paced activity, and never recycle an address across unrelated identities. A single reused IP is the most common cause of correlated bans across an entire account estate.
E-commerce. Marketplace pricing is personalised by geography, so the exit's city and ASN change the data you collect. Pin geography per collection run, record the exit's location alongside every price point, and re-collect a control basket hourly to detect silent A/B buckets before they poison a week of analysis.
Ad verification. You are checking what a real user in a real place sees, so authenticity outranks throughput. Use residential or mobile exits in the exact market, render the page fully including third-party creative, and capture a screenshot plus the exit IP as evidence for the advertiser report.
Mistakes that waste residential budget
Most failed proxy projects fail the same way: the network is fine, the integration is not. These are the errors we see most often in post-mortems, roughly in order of how much money they cost.
If a crawl degrades, change one variable at a time — first the target, then the fingerprint, then the pool. Swapping vendor while three things changed at once guarantees you learn nothing and repeat the problem on the new invoice.
- Skipping the trial because the vendor is well known, then discovering the geo you need is thin
- Never exporting logs, so every incident becomes a guess between pool, parser and target
- Buying on advertised pool size instead of live exits in the countries you actually target
- Using rotating credentials for logged-in flows, which reads as session hijacking to the target
- Leaving DNS resolution on the local machine and leaking the real region on every lookup
- Setting timeouts shorter than the network's own median connect time and blaming the pool
Legality, sourcing and ethics
Using residential proxies is lawful in most jurisdictions; what you do through them determines your exposure. Collecting publicly available data is broadly defensible, and courts in several jurisdictions have said so. Bypassing authentication, ignoring an explicit cease-and-desist, or collecting personal data without a lawful basis is a different matter entirely, and no proxy network insulates you from it.
Sourcing matters commercially, not just morally. Consumer IPs reach the pool through SDK partnerships and bandwidth-sharing apps, so ask how consent is obtained, whether peers can opt out, and what the compensation model is. Vendors with clean supply publish the answer; vendors without it change the subject. Under GDPR and CCPA the exit IP can itself be personal data, so keep retention short and document your lawful basis before a customer's procurement team asks.
Verdict: who should buy residential proxies
Buy residential proxies when your targets score the signal this category is strong at — hardened scraping, social media, e-commerce, ad verification — and when the $1.75 – $15 / GB band is defensible against the value of the data or accounts involved. If your targets do not check IP reputation, you are paying a premium for a signal nobody is reading.
For most teams the shortlist is short: Oxylabs if you want the best-tested option in this category and can absorb $8.00/GB, IPFly if unit economics decide the project at $0.80/GB. Trial both against your own targets for two weeks, compare cost per successful record rather than cost per unit, and keep the loser provisioned at minimum spend as a failover.
Whatever you pick, revisit it every quarter. Pools rotate, anti-bot vendors ship new detection, and the network that led this cycle's benchmark is not automatically leading the next one.
Related providers for residential proxies
All reviews →Oxylabs
$8.00/GB · 620 ms · 9.8/10
Enterprise-grade SOCKS5 with the largest tested residential pool.
Bright Data
$8.40/GB · 680 ms · 9.6/10
The most feature-rich proxy network with granular targeting.
Smartproxy
$7.00/GB · 810 ms · 9.3/10
Best value residential SOCKS5 for small to mid-size teams.
NodeMaven
$3.99/GB · 700 ms · 9.3/10
Quality-filtered residential and mobile proxies with the cleanest IP scoring.
SOAX
$6.60/GB · 890 ms · 9.1/10
Clean residential and mobile SOCKS5 with per-second billing.
IPFly
$0.80/GB · 620 ms · 9.1/10
90M+ residential pool with static ISP and datacenter proxies at value pricing.
Prices and latency come from our testing methodology. See the full provider comparison or current proxy deals.
Advantages
- + Highest IP trust of any pool type
- + Country, city and ASN targeting
- + Sticky sessions for logged-in flows
Trade-offs
- − Billed per GB, so heavy pages get costly
- − Higher latency than datacenter
- − Pool quality varies by sourcing ethics
Residential Proxies FAQ
How much do residential proxies cost in 2026?+
Entry plans land around $1.75–$4/GB at volume and $6–$15/GB on small starter packs. Mid-tier networks average $3–$5/GB for 100GB commitments.
Are residential proxies legal?+
Yes. Using them is legal in most jurisdictions; what matters is what you do with them. Respect each site's terms, local law and personal-data regulation.
Residential or datacenter?+
Choose residential when the target blocks cloud ASNs or fingerprints IP reputation. Choose datacenter for high-volume crawling of tolerant endpoints where cost per request dominates.
More residential guides
Related proxies
All proxy guides →Residential
Residential Proxies for Social Media
Social platforms run the strictest risk engines on the web. Residential and mobile IPs, one identity per IP, and a stable browser fingerprint are the baseline for surviving more than a week.
$3 – $8 / GB or per IP
Mobile 4G/5G
4G Mobile Proxies
4G LTE proxies remain the workhorse of the mobile proxy market: mature hardware, broad carrier coverage, dependable 20–60 Mbps throughput and the same CGNAT trust advantage as 5G at a lower price.
$40 – $90 / port / month
Residential
Best Residential Proxies
The best residential proxies for you are the ones with the highest success rate on your targets at the lowest cost per successful request — not the ones with the biggest advertised pool.
$1.75 – $15 / GB
Residential
Residential Proxies for Web Scraping
For scraping projects that hit anti-bot walls, residential proxies are the difference between a 40% and a 95% success rate — provided the rest of your stack does not give you away.
$2 – $6 / GB
Residential
Rotating Residential Proxies
Rotating residential proxies assign a different household IP to each request (or each short interval), spreading a crawl across thousands of ISPs so no single address ever trips a rate limit.
$2 – $8 / GB
ISP / Static residential
ISP Proxies
ISP proxies combine the two things you normally have to choose between: an IP registered to a consumer ISP and hardware in a datacenter with gigabit uplinks and unlimited bandwidth.
$2 – $6 / IP / month
Best alternatives to residential proxies
Compare types →Alternative
ISP Proxies
Datacenter speed on ISP-registered IPs you keep for months.
$2 – $6 / IP / month
Alternative
Mobile Proxies
Carrier-grade NAT IPs shared with thousands of real phones.
$40 – $120 / port / month
Alternative
Datacenter Proxies
Cheap, fast server IPs for volume work on tolerant targets.
$0.30 – $3 / IP / month
Still unsure? Read our independent provider reviews or the current proxy deals.
Related articles on residential proxies
All articles →buying guides
How to Choose the Best SOCKS5 Proxy for Your Use Case
A decision framework that maps proxy type, provider tier, session model, and budget to your actual workload — so you stop overpaying and stop under-buying.
tutorials
How to Test a SOCKS5 Proxy: Speed, Anonymity, and Success Rate
The complete methodology for testing any SOCKS5 proxy before you buy — including DNS leak checks, latency benchmarks, and a real-world success-rate script.
buying guides
Best SOCKS5 Proxy Providers in 2026: The Definitive Ranking
We benchmarked 27 SOCKS5 providers across success rate, latency, pool freshness, price per GB, and support quality. Here are the ten that actually deliver in 2026.
tutorials
How to Set Up a SOCKS5 Proxy: The Complete Step-by-Step Guide
A practical walkthrough for configuring SOCKS5 in your browser, OS, terminal, and scraping stack — with authentication, DNS-through-proxy, and troubleshooting.
proxy security
How to Use a SOCKS5 Proxy Safely and Effectively
Operational best practices for using SOCKS5 in production: authentication hygiene, session management, error handling, rate limiting, and staying out of trouble.
VPNs and residential VPN services
Proxy vs VPN Guide
an encrypted tunnel for all device traffic, sometimes exiting through residential IPs instead of the usual datacenter VPN ranges