Proxies /
住宅代理
 Excellent on Trustpilot · 434+ reviews

Residential proxies that finish the job.

Our residential proxy network spans 100M+ rotating IPs across 195+ countries. Real devices, real ISPs — with a 99.95% success rate that means your scrapers actually finish.
Rotating IPs every request
30-min sticky sessions
HTTP/HTTPS/SOCKS5
City, state, ISP targeting

Live network status

All systems operational

Active sessions

~47K

Success (24h)

99.95%

Avg response

0.84s

Requests/sec

2,847

				
					res.ipb.cloud:1080
user-cc=us:pass
				
			

Real desktop

Real mobile

Real ISP

Reads as organic traffic

Indistinguishable from real users

Real residential proxies, not flagged datacenter ranges.

Every IP in our pool comes from a real device on a real ISP — not datacenter ranges flagged by every anti-bot system. Your requests look the way they need to look: like a person at home loading a page.

  • Ethically sourced — partnered with vetted networks, fully compliant
  • 100M+ IPs in rotation — large enough to never burn the same IP twice
  • Anti-bot resistant — high-quality IPs that hold up against modern detection

Geo-target your residential proxies to any city or ISP.

Hit the right audience the first time. Filter by country, state, city, or specific ISP — without paying extra for premium geo features.

  • 195+ countries — real local presence
  • City-level precision — in major markets
  • ISP targeting — Verizon, AT&T, T-Mobile, and 100+ more

TOP LOCATIONS

🇫🇷  France
1.4M IPs
Rotating residential
Every request
192.168.1.1
203.45.92.3
85.214.7.118
74.125.40.2
47.3.148.11
74.145.40.1
Sticky session
Up to 30 min
192.168.1.1
192.168.1.1
192.168.1.1
192.168.1.1
192.168.1.1
192.168.1.1

Rotating residential proxies — or hold a sticky session.

Different jobs need different rotation patterns. Burn through IPs fast for high-volume scraping, or hold a single IP for up to 30 minutes when you need session continuity.

  • Rotating mode — a backconnect gateway that assigns a new IP on every request.
  • Sticky sessions — same IP for up to 30 minutes
  • Switchable on the fly — configure per request in the username

Connect your residential proxies in a few lines of code.

Drop our endpoint into your existing stack. Country, city, state, ISP, and session targeting — all set in the username.

				
					# Targeting set in the username:
# cc=country, c=city, r=region, isp=ISP, s=session
import requests
 
username = "cc=us-c=atlanta"
proxy = f"http://{username}:YOUR_PASSWORD@res.ipb.cloud:1080"
proxies = {"http": proxy, "https": proxy}
 
r = requests.get("https://api.ipify.org", proxies=proxies)
print(f"IP: {r.text}")
				
			
				
					# Targeting set in the username:
# cc=country, c=city, r=region, isp=ISP, s=session
curl -x http://cc=us-c=atlanta:YOUR_PASSWORD@res.ipb.cloud:1080 \
     https://api.ipify.org
				
			
				
					// Targeting set in the username:
// cc=country, c=city, r=region, isp=ISP, s=session
const axios = require('axios');
const { HttpsProxyAgent } = require('https-proxy-agent');
 
const username = 'cc=us-c=atlanta';
const proxy = `http://${username}:YOUR_PASSWORD@res.ipb.cloud:1080`;
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));
				
			
				
					<?php
// Targeting set in the username:
// cc=country, c=city, r=region, isp=ISP, s=session
$username = 'cc=us-c=atlanta';
$proxy = "http://{$username}:YOUR_PASSWORD@res.ipb.cloud:1080";
 
$ch = curl_init('https://api.ipify.org');
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
 
$response = curl_exec($ch);
curl_close($ch);
 
echo "IP: " . $response;
				
			
				
					// Targeting set in the username:
// cc=country, c=city, r=region, isp=ISP, s=session
package main
 
import (
    "fmt"
    "io"
    "net/http"
    "net/url"
)
 
func main() {
    proxyURL, _ := url.Parse("http://cc=us-c=atlanta:YOUR_PASSWORD@res.ipb.cloud:1080")
    client := &http.Client{
        Transport: &http.Transport{Proxy: http.ProxyURL(proxyURL)},
    }
 
    resp, _ := client.Get("https://api.ipify.org")
    defer resp.Body.Close()
 
    body, _ := io.ReadAll(resp.Body)
    fmt.Printf("IP: %s\n", body)
}
				
			
				
					// Targeting set in the username:
// cc=country, c=city, r=region, isp=ISP, s=session
import java.net.*;
import java.net.http.*;
 
public class ProxyExample {
    public static void main(String[] args) throws Exception {
        String username = "cc=us-c=atlanta";
 
        Authenticator auth = new Authenticator() {
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(
                    username,
                    "YOUR_PASSWORD".toCharArray()
                );
            }
        };
 
        HttpClient client = HttpClient.newBuilder()
            .proxy(ProxySelector.of(new InetSocketAddress("res.ipb.cloud", 1080)))
            .authenticator(auth)
            .build();
 
        HttpRequest req = HttpRequest.newBuilder()
            .uri(URI.create("https://api.ipify.org"))
            .build();
 
        HttpResponse<String> res = client.send(req, HttpResponse.BodyHandlers.ofString());
        System.out.println("IP: " + res.body());
    }
}
				
			
				
					// Targeting set in the username:
// cc=country, c=city, r=region, isp=ISP, s=session
using System;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
 
class Program {
    static async Task Main() {
        var handler = new HttpClientHandler {
            Proxy = new WebProxy("http://res.ipb.cloud:1080") {
                Credentials = new NetworkCredential(
                    "cc=us-c=atlanta",
                    "YOUR_PASSWORD"
                )
            }
        };
 
        using var client = new HttpClient(handler);
        var ip = await client.GetStringAsync("https://api.ipify.org");
        Console.WriteLine($"IP: {ip}");
    }
}
				
			

Works with the tools you already use.

Configured guides for anti-detect browsers and scraping frameworks. Drop our endpoint into the stack you already run.

Scrapy Python Scraping Framework Residential Proxy Integration
废料
Selenium Browser Automation Residential Proxy Integration
Puppeteer Headless Browser Residential Proxy Integration
木偶师
Playwright Browser Automation Residential Proxy Integration
Playwright
Multilogin Anti-Detect Browser Residential Proxy Integration
Multilogin

Flexible residential proxy pricing that scales with you.

Scale up or down anytime. Custom volume pricing available for high-traffic operations.

Residential Proxies
Rotating IPs for scraping and automation

Premium residential proxy plans are best for account management, multi-account purchasing, and web scraping — thanks to their larger IP pool and city, state, and ISP-level targeting. Explore our residential proxies →

启动器

$ 79
每月
7 GB
TRAFFIC / MO
20,000,000
住宅 IPS
2 个子用户
分享您的账户
  • 启动器包括
  • 从全球 2,014 个城市选择住宅 IP
  • 真实的移动和台式机设备 IP 地址
  • 极低的重新验证率
  • 用户/密码验证
  • 高级目标
  • Traffic Limit (7 GB)
  • 住宅 IP(2 000 万)
  • 子用户(2 个用户)

$ 149
每月
16 GB
TRAFFIC / MO
60,000,000
住宅 IPS
4 个子用户
分享您的账户
  • 入门功能,外加
  • ASN 过滤(Verizon、AT&T、T-Mobile 和其他数百家公司)
  • 会话控制:长达 30 分钟的粘性 IP
  • 国家、州和城市一级的目标定位
  • 优先支持
  • Traffic Limit (16 GB)
  • 住宅 IP(6000 万)
  • 子用户(4 个用户)
最受欢迎

专业

$ 249
每月
32 GB
TRAFFIC / MO
100,000,000
RESIDENTIAL IPS
6 个子用户
分享您的账户
  • 加功能,加:
  • 无限连接和线程自动化
  • 无子网:住宅代理不共享子网
  • Traffic Limit (32 GB)
  • Residential IPs (100 million)
  • 子用户(6 个用户)
接受的付款方式:

What teams use residential proxies for

Real customers using IPBurger residential proxies for these jobs every day.

Collect public data from any site without IP blocks or CAPTCHAs.
Verify how your ads display across geographies and devices.
Scrape SERPs and track rankings across locations.

Price monitoring →

Track competitor pricing across markets in real time.

Market research →

Access localized data and pricing from any market.

Social media management →

Run multiple accounts without bans across Instagram, TikTok, and more.

Top residential proxy locations

Real residential IPs across 195+ countries. Top markets shown below.

🇺🇸
12.4M IPs
🇬🇧
3.2M IPs
🇩🇪
2.8M IPs
🇨🇦
1.6M IPs
🇫🇷

法国

1.4M IPs
🇦🇺

澳大利亚

980K IPs
🇪🇸

西班牙

820K IPs
🇮🇹

意大利

640K IPs

Trusted by teams who scrape for a living.

Excellent on Trustpilot · 434+ reviews

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.

Mouad, Verified Ipburger Customer
穆阿德

Verified Trustpilot review

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.

Tim, Verified Ipburger Customer
Tim F.

US

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 IP Burger 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!

Mark, Verified Ipburger Customer
Mark Gomez

US

Residential proxy questions, answered.

什么是住宅代理?

A residential proxy routes your traffic through a real device on a real internet service provider — like a home internet connection — rather than through a datacenter server. Because the IP address belongs to an actual residential network registered to an ISP like Comcast, Verizon, or BT, websites see your requests as ordinary user traffic rather than automated bot activity. This dramatically reduces IP blocks, CAPTCHAs, and rate limits when scraping data, verifying ads, or managing multiple accounts across geographies.
When you send a request through a residential proxy, your traffic is routed through an intermediary device on an ISP network before reaching the target website. The website sees the residential IP — not yours — and returns its response through the same path. With IPBurger, you configure targeting (country, city, state, ISP, session) directly in the proxy username, and our gateway selects the right IP from a pool of 100M+ real residential addresses across 195+ countries. No software to install — just point your existing HTTP, HTTPS, or SOCKS5 client at our endpoint.
Residential proxies are legal in most jurisdictions when used for legitimate purposes — web scraping public data, ad verification, SEO monitoring, price comparison, and brand protection are all standard business use cases. However, legality depends on how you use them. Scraping data behind login walls without permission, violating website terms of service, or collecting personal data in ways that breach GDPR or CCPA can create legal risk regardless of the tool used. IPBurger's residential network is ethically sourced from vetted networks with consent from device owners.
Residential proxies use IP addresses assigned by ISPs to real homes, which makes them appear as ordinary internet users to target websites. Datacenter proxies use IPs from cloud or hosting providers, which are easy for anti-bot systems to identify and block. Residential proxies are more expensive and slightly slower, but they succeed where datacenter proxies fail — particularly on protected sites like e-commerce platforms, search engines, sneaker sites, and social networks. If your scraper gets blocked with datacenter proxies, the fix is almost always residential.
Residential proxies are hosted on real consumer devices and typically rotate — each request can use a different IP from the pool. ISP proxies (also called "static residential") are datacenter-hosted but registered under a real ISP's name, giving them residential-like legitimacy with the speed and uptime of a datacenter. Use rotating residential for high-volume scraping where you want maximum IP diversity. Use static ISP when you need the same IP for hours or days — long-running account management, ad verification campaigns, or anything requiring session persistence beyond 30 minutes.
Rotating mode assigns a new residential IP on every request, which is ideal for high-volume scraping where you want to avoid request concentration on any single IP. Sticky sessions hold the same IP for up to 30 minutes, which is necessary for any workflow that requires session continuity — logging into accounts, multi-step checkouts, or filling out forms across multiple pages. Both modes draw from the same residential pool on every IPBurger plan. You switch between them by including or omitting a session parameter in your proxy username.
By default, our residential gateway assigns a fresh IP on every request — no configuration required. To control rotation behavior, you include a session parameter in your proxy username (s=YOUR_SESSION_ID) which holds the same IP for up to 30 minutes. Omit the parameter and you're back to per-request rotation. You can run rotating and sticky workflows concurrently from the same account by using different session IDs in different connections.
Yes. IPBurger supports targeting by country (cc=), state or region (r=), city (c=), and ISP (isp=) — all configured through the proxy username. Major markets like the United States have city-level coverage across hundreds of locations, plus filtering by major ISPs including Verizon, AT&T, Comcast, T-Mobile, and 100+ more. You can combine parameters in a single username (e.g., cc=us-c=atlanta-isp=comcast) to target very specific demographics or test localized content.
Our 99.95% success rate is calculated as the percentage of requests that return a successful HTTP response (2xx status code) through the residential network over a rolling 30-day window. The metric excludes requests rejected by target websites for reasons unrelated to the proxy (404 errors, malformed requests, banned accounts). Network performance is monitored continuously, and current operational metrics are visible on our status page.
Yes. Our residential proxies work with any HTTP, HTTPS, or SOCKS5 client. We have dedicated integration guides for Scrapy, Selenium, Puppeteer, Playwright, Postman, and the major anti-detect browsers including AdsPower, GoLogin, Incogniton, MoreLogin, and Multilogin. Setup is typically two lines of code — define the proxy URL, attach it to your HTTP client. Authentication is handled via username and password, which can also encode your targeting and session parameters.
IPBurger residential plans are priced by monthly bandwidth (GB) included, not per IP. All plans include unlimited IP rotation, sticky sessions, city and ISP targeting, and access to the full network of 100M+ IPs across 195+ countries. For current pricing and plan comparison, see the pricing section above. For teams needing custom volume pricing, contact sales for tailored plans.
Yes. We offer refunds on residential proxy plans within 3 days of your original payment, as long as your bandwidth usage is below 0.5 GB. This gives you enough room to genuinely test the network without supporting full production use on a refunded plan.

To request a refund, contact support via your dashboard or email support@ipburger.com. Most requests are processed within 24 hours. After the refund window, you can cancel anytime from your dashboard to stop future billing. See our complete refund policy in our Terms of Service.
Support is available 24/7 via email, live chat from your dashboard, and ticket system. Our average first-response time is under an hour, and most technical issues are resolved in the same conversation. For complex integration questions, our engineering team has direct access to debug network-level issues — you're not handed off to a chatbot or a level-one agent reading from a script.

Start scraping with proxies that finish the job.

Set up in under 60 seconds.

Setup in <60 seconds
Cancel anytime
24/7 live support