Rotating residential proxies that don't get blocked.
100M+ real household IPs across 195+ countries — rotating on every request, or held up to 30 minutes when a session has to stay put. Target by city, state or ISP on every plan, and 99.95% of requests land.
- A new IP on every request, or a sticky session held up to 30 minutes — a toggle in your client area, not a different plan.
- Country, state, city and ISP targeting on all three plans — never a premium add-on, never a higher tier.
- Unlimited concurrent sessions and threads over HTTP and HTTPS, with username and password auth for any client.
- Ethically sourced, consent-based IPs — GDPR-aligned, and defensible in a vendor review.
From $59/mo for 10 GB, down to $4.48/GB at 60 GB — the full 100M+ pool and every targeting option on all three plans.
One endpoint. Two rotation modes.
residential.ipb.cloud:7777Target by
Trusted by 24,100+ businesses worldwide
What you actually get
The entry plan is the whole network.
Most residential proxy pricing is a ladder, and the rungs are features. The advertised per-GB rate turns out to need a volume commitment. City and ISP targeting turns out to be a tier above. Concurrency turns out to be capped until you upgrade. Our three plans differ by bandwidth and how many saved proxy users you can keep — nothing else. Starter runs on the same 100M+ pool, with the same targeting and the same concurrency, as Pro.
partial Mid
most Top
all
all Plus
all Pro
all
A feature ladder hides the real price
- ✕ The rate you compared belongs to a volume you won't buy
- ✕ The targeting your job needs sits one tier above the price you saw
- ✕ Thread caps bite exactly when the job starts to scale
- ✕ You find all of it out after the pipeline is already built
One product, offered in three sizes
- ✓ The same 100M+ pool across 195+ countries on every plan
- ✓ Country, state, city and ISP targeting, never a paid add-on
- ✓ Unlimited concurrent sessions and threads at every size
- ✓ Size the plan to your bandwidth, then move up or down at will
Why residential proxies
What actually decides whether a job finishes
Six things that matter when you're pulling data at volume and the run has to complete — and why a premium residential proxy service earns back the difference over the cheapest gigabyte you can find.
99.95% of requests land
The share of requests returning a 2xx across the network, over a rolling 30 days, with client and target-side errors excluded. Fewer failures means fewer retries — and retries are bandwidth you've already paid for.
Rotation on your terms
Sticky off and a thousand parallel requests exit a thousand different IPs. Sticky on and one IP holds for up to 30 minutes — enough to carry a login, a cart or a checkout through to the end.
Targeting down to the ISP
Take a whole country, or narrow to a city, a state or a named ISP. Each configuration saves as its own proxy user with its own data cap, so one job can't quietly eat the month's bandwidth.
No thread caps, no throttle
No thread limit, no request-per-second ceiling, no slowdown past a usage mark. Open as many connections as your infrastructure handles — and that's true on the $59 plan, not just the top one.
Real IPs, sourced with consent
Genuine consumer connections on residential ISPs, not servers in a rack. Every one comes from a device whose owner opted in and is compensated, under GDPR-aligned agreements you can hand to legal.
Support that actually answers
24/7, from engineers who run this network — not a queue reading from a script. It's what customers mention most in reviews, and at 2am when a target starts blocking, it decides the week.
From $59/mo for 10 GB · every feature on every plan · 3-day money-back guarantee
Setup
Configure it once, then copy four lines
Set a country, a targeting rule and a rotation mode in the client area, and it hands you a host, a port, a username and a password. Everything you chose is baked into that username — no API call before you can send traffic.
-
01
Pick a bandwidth plan
Choose 10, 30 or 60 GB and check out. Every plan opens on the same pool with the same targeting, so this is a question about volume, not about features.
-
02
Create a proxy user
Give it a label, pick a country, then either take the whole country or narrow it — by city, state or ISP, depending on where you are targeting. Each proxy user gets its own data cap, so one job can't quietly eat the month's bandwidth — useful when a client, a project or a teammate needs its own lane. Settings stay editable, so a proxy user is a saved configuration rather than a commitment.
-
03
Choose how it rotates
Leave sticky off and the username carries no session tokens at all — every request exits a different IP. Switch it on and drag the hold anywhere up to 30 minutes, enough to carry a login, a cart or a multi-step form through to the end.
-
04
Copy the credentials
Host, port, username and password appear next to the settings you just chose. It's a standard HTTP proxy, so it drops into Scrapy, Selenium, Puppeteer, Playwright, anti-detect browsers and anything else that takes a proxy URL — no SDK, no wrapper library.
Running a lot of them? Tick
Generate Proxiesand download the whole set as a list. -
05
Or skip the code entirely
Plenty of our residential customers never write a line of it. The IPBurger extension puts the network behind a button in Chrome or Firefox — pick a location, click once, and the tab you're in is browsing from there. No credentials to paste, no proxy settings to edit.
Free with any plan, and it draws on the same bandwidth as everything else.
HTTP
residential.ipb.cloud
7777
customer-a1b2c3d4e5-city-washington-sessid-cFNk-sesstime-30
••••••••
customer-
Your account ID. Identical across every proxy user you create.
cc-
Country on its own. cc-US, cc-GB, cc-DE — the whole country's pool.
city-
Or narrow it. Also state- and isp-; which are offered depends on the country.
sessid-
Session ID. Same ID, same exit IP. Absent entirely when sticky is off.
sesstime-
Minutes that IP is held. Anywhere on the slider, up to 30.
# Credentials come from Proxy Users in your client area. # The username carries country, targeting and rotation. import requests username = "customer-a1b2c3d4e5-city-washington-sessid-cFNk-sesstime-30" password = "YOUR_PASSWORD" proxy = f"http://{username}:{password}@residential.ipb.cloud:7777" proxies = {"http": proxy, "https": proxy} r = requests.get("https://api.ipify.org", proxies=proxies) print(f"IP: {r.text}")
// Credentials come from Proxy Users in your client area. // The username carries country, targeting and rotation. const axios = require('axios'); const { HttpsProxyAgent } = require('https-proxy-agent'); const username = 'customer-a1b2c3d4e5-city-washington-sessid-cFNk-sesstime-30'; const proxy = `http://${username}:YOUR_PASSWORD@residential.ipb.cloud:7777`; const agent = new HttpsProxyAgent(proxy); axios.get('https://api.ipify.org', { httpsAgent: agent }) .then(r => console.log(`IP: ${r.data}`)) .catch(err => console.error(err));
# confirm which exit you came out of curl -x http://customer-a1b2c3d4e5-city-washington-sessid-cFNk-sesstime-30:YOUR_PASSWORD@residential.ipb.cloud:7777 \ https://api.ipify.org
# settings.py DOWNLOADER_MIDDLEWARES = { "scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware": 110, } # sticky off, country-wide — no session tokens at all, # so every request leaves from a different IP username = "customer-a1b2c3d4e5-cc-US" request.meta["proxy"] = f"http://{username}:YOUR_PASSWORD@residential.ipb.cloud:7777"
// sessid holds one IP for the whole browser session const browser = await puppeteer.launch({ args: ['--proxy-server=http://residential.ipb.cloud:7777'] }); const page = await browser.newPage(); await page.authenticate({ username: 'customer-a1b2c3d4e5-city-washington-sessid-cFNk-sesstime-30', password: 'YOUR_PASSWORD' });
Pricing
Buy rotating residential proxy servers
100M+ rotating residential IPs across 195+ countries. Buy residential proxy plans from $59/mo - as low as $4.48/GB - live in under 60 seconds.
Starter
Put the network through a real workload before you commit.
$5.90 per GB
- Monthly bandwidth 10 GB
- Saved proxy users 2
Plus
Three times the data, at a lower rate than Starter.
$4.97 per GB
- Monthly bandwidth 30 GB
- Saved proxy users 4
Pro
The best per-GB rate we publish, with no commitment behind it.
$4.48 per GB
- Monthly bandwidth 60 GB
- Saved proxy users 6
Included on every plan
Not a feature ladder. Starter gets the same network Pro does.
- The full 100M+ residential pool
- 195+ countries and 2,014 cities
- Country, state, city and ISP targeting
- Rotating and sticky sessions up to 30 min
- Unlimited concurrent connections and threads
- Per-proxy-user data caps
- Chrome and Firefox extensions
- Mid-cycle top-ups whenever you need them
- 24/7 support from people who run proxies
Past 60 GB a month?
Tell us the volume, the countries and the targets, and we'll price it around the job. Custom plans get the same network — just a rate built for the traffic you actually run.
Why teams choose us over other residential proxy providers
Verified reviews from people running rotating residential IPs on real workloads.
Based on 434+ reviews on Trustpilot
“I've had zero issues after switching”
IPBurger's residential proxies for eBay and their protected browser extensions are the best around. I was having a lot of issues before finding this site, and I've had zero issues after switching to them. Their customer service is phenomenal as well, they help me get set up and made sure I understand how to use their service completely. I highly recommend.
“The best proxy service in the market”
I have been using IPBurger for a couple of years now and it is the best proxy service in the market as I have already tried more than 5 other companies. I use their static IPs and residential proxies and both are totally great. Additionally, their customer support is exceptional and I get replies in less than an hour with the exact solution. Highly recommended.
“Better than the providers I tried before”
I started using their residential proxies after I heard great things about them. So far, I had a great experience with their service. I tried a few other providers in the past, but IPBurger offers the best residential proxies based on my experience. I would also emphasize their knowledgeable and fast support team who helped me in the initial onboarding. Highly recommended!
Reviews are collected by Trustpilot.
Compare
Rotating proxies vs static IPs: which do you need?
Rotation is the right answer when you're gathering data and the wrong one when you're holding an identity. Here's where the line falls, including the cases where we'd point you at a different product.
Creating brand-new accounts rather than working existing ones? A Fresh Dedicated IP has never been used by anyone, which is a different guarantee again — from $9.58/mo per IP.
Not sure which fits? Ask us — we'd rather sell you the right one once.
Use cases
What rotating residential proxies are used for
Anywhere you need to see a site the way an ordinary visitor in a particular place sees it — at a volume that would get one IP blocked in minutes.
Web scraping at volume
Thousands of concurrent requests, each leaving from a different household IP. Nothing accumulates against a single address, so the rate limit that stops a one-IP crawler never fires.
Scraping proxies →SEO and SERP monitoring
Search results are personalised by location, so checking a Dallas ranking from a London office tells you nothing. Query from an IP in the city that matters and read the page your customer actually gets.
SEO proxies →Ad verification
Confirm your creative renders where you paid for it, and catch the placements you didn't. Fraudsters cloak against known datacenter ranges — arriving on a residential IP means you see what a real viewer sees.
Ad verification proxies →Price and marketplace monitoring
Marketplace pricing, stock and buy-box position shift by region and by shopper. Sample the same listing from a dozen cities on a schedule and you get the real distribution, not one warehouse's view of it.
Amazon proxies →Travel fare aggregation
Airlines and hotels quote different fares depending on where the search comes from. Pull the same route from several countries at once and the spread stops being a rumour and starts being data.
Travel proxies →Affiliate link testing
Check that redirects fire, geo-rules route correctly and your landing page loads from every market you promote in — before a partner reports the broken one, and before you've paid for the clicks.
Affiliate proxies →Working the same account for weeks rather than collecting data? Rotation is the wrong tool — Static ISP proxies keep one IP indefinitely, which is what a login expects to see.
Coverage
Residential proxy locations: 195+ countries
195+ countries and 2,014 cities in the pool. These are the eight deepest — and the token that targets each one.
United States
cc-US
United Kingdom
cc-GB
Germany
cc-DE
Canada
cc-CA
France
cc-FR
Australia
cc-AU
Spain
cc-ES
Italy
cc-IT
Somewhere else? The other 187 countries are in the pool too, and each one narrows to city, state or ISP the same way. Every location costs the same — there's no premium geo.
Browse all locationsWhat is a rotating residential proxy?
A rotating residential proxy routes each request through a real household device on a consumer ISP, handing you a different IP address every time. The site you're reaching sees an ordinary visitor in an ordinary place, and never sees the same residential IP twice.
Rotation is what makes volume possible. A single IP requesting ten thousand pages looks like exactly what it is; ten thousand household IPs requesting one page each look like ten thousand people. Spreading a job across a large pool means no address accumulates the request history that triggers a rate limit in the first place. For the longer definition — how the IPs are sourced, how they differ from datacenter addresses — see what is a residential proxy.
Which mode does your job need?
Rotation is right when every request stands alone, and wrong the moment the server needs to remember you. Sticky sessions exist for the gap in between — a login, a cart, a form that runs across several pages.
- Rotating — a new IP on every request, for crawling, monitoring and anything you can parallelise
- Sticky — one IP held up to 30 minutes, for flows where a mid-session IP change would look like a hijack
- The tell — if the site sets a session cookie you need to keep, you need the IP to match it
- Past 30 minutes — that's no longer a session, it's an identity, and it wants a static IP instead
Pick a mode
Questions, answered
Billing, refunds and plan changes are covered on the residential pricing page. Still stuck? Support answers 24/7 — real engineers, not chatbots.
How does IP rotation actually work?
Every request through a proxy user with sticky switched off leaves from a different IP in the pool. There's nothing to schedule and no rotation interval to configure — send a thousand requests and they exit from a thousand addresses. Turning sticky on adds a sessid token that pins one exit until the session expires.
What's the difference between rotating and sticky sessions?
Rotating gives you a new IP per request, which is what you want for crawling, monitoring and anything you can run in parallel. Sticky holds one IP for a set duration so a login, a cart or a multi-step form doesn't break halfway through. Sticky sessions last up to 30 minutes, set on a slider in your client area. For anything longer, you want a static ISP proxy instead.
How do I target a specific country or city?
Targeting is set on the proxy user and encoded in the username it generates. A country-wide user reads customer-yourID-cc-US; narrowing to a city gives you customer-yourID-city-washington. Pick the country first, then choose one narrowing rule — city, state or ISP, depending on what's offered for that country. Every plan includes every level.
Which protocols do you support? Is SOCKS5 available?
HTTP and HTTPS. SOCKS5 isn't supported on the residential network — it's something we're working on. Note that the residential endpoint runs on port 7777, which isn't a SOCKS port despite what the number might suggest elsewhere: point an ordinary HTTP proxy client at it. If your tool needs SOCKS5 specifically, our ISP and dedicated IPs support it.
How is the 99.95% success rate measured?
It's the share of requests across the network returning a 2xx response, measured over a rolling 30 days. Failures caused by the target site or by the client — malformed requests, a site that's down, a URL that 404s — are excluded, so the figure measures the proxy layer and nothing else.
Will these work with Scrapy, Selenium, Puppeteer or an anti-detect browser?
Yes. It's a standard HTTP proxy with username and password authentication, so anything that accepts a proxy URL works without an SDK or wrapper library — Scrapy, Selenium, Puppeteer, Playwright, Octoparse, Multilogin, GoLogin and the rest. There are copy-paste examples for Python, Node, cURL, Scrapy and Puppeteer further up this page.
How many concurrent connections can I run?
As many as your infrastructure can open. There's no thread cap, no connection limit and no throttle that kicks in at a usage threshold — and that's true on Starter, not just on Pro. Bandwidth is the only thing your plan meters.
What uses up bandwidth, and how do I use less of it?
You're billed on total bytes through the proxy, request and response together, including images, fonts, scripts and anything else the page pulls. The biggest saving is usually blocking media and stylesheets in a headless browser, since a page that renders in 2 MB often carries under 100 KB of the HTML you actually parse. Requesting APIs directly rather than rendering pages saves more again.
How accurate is the geo-targeting?
City and ISP assignments come from the IP registry data the target sites themselves rely on, so what you select is what a geolocation lookup reports. Where a city has thin coverage at a given moment you may get an exit elsewhere in the same country rather than a failed request — worth checking against a lookup service on your first run if street-level accuracy matters to the job.
Something's still blocking me — what usually causes that?
Almost always something above the IP layer. Check that your headers and TLS fingerprint look like a real browser, that you're not hitting the site faster than a person could, and that you're not reusing one sticky session across requests that should look independent — a residential IP behaving like a bot still reads as a bot. If the target is a major social platform, residential may be the wrong tool — mobile proxies carry a higher trust score. Support will look at the actual failures with you.
How fast are rotating residential proxies?
Slower than a datacenter IP, and faster than most people expect. Every exit is a real home connection, so latency depends on that household's line and how far it sits from your target — any provider quoting one number is averaging over a lot of variance. In practice, what decides how long a job takes isn't per-request latency, it's how many requests you have to send twice. If you need guaranteed throughput on a fixed address, static ISP proxies run up to 1 Gbps.
Where do the IPs come from, and is this legal?
Every IP belongs to a real device whose owner opted in and is compensated for sharing bandwidth, under GDPR-aligned agreements. Using proxies to collect publicly available data is legal in most jurisdictions; what you do with them is on you. Our terms prohibit fraud, unauthorised access and anything that would breach a site's own terms of service.
Residential, ISP or mobile — which should I be buying?
Rotating residential for collecting data at volume across many locations. Static ISP when one account needs the same IP for weeks or months. Mobile for the hardest targets, where carrier IPs carry the highest trust of any type. There's a full comparison further up this page, and if you're unsure, ask us before you buy rather than after.
Rotating residential proxies that don't get blocked.
100M+ residential IPs across 195+ countries, with every targeting option and unlimited concurrency on all three plans. From $59/mo for 10 GB, live in under 60 seconds, backed by a 3-day money-back guarantee.