TL;DROur verdict on 711Proxy, in 5 facts
- Residential-first provider claiming 100M+ IPs across 200+ countries with a very broad product menu.
- Aggressive pricing from $0.55/GB or $0.03/IP, plus hourly unlimited rotating from $15/hour.
- Crypto accepted, but there is no refund policy and no documented free trial.
- All performance numbers (99.9% uptime, <0.3s latency, 99.7% success) are self-published and unverified.
- Best for budget-conscious, multi-model buyers who validate quality before purchase.
The verdict
Independent nightly benchmarks since March 2024 — here's where 711Proxy lands.
- Large vendor-stated pool of 100M+ residential IPs across 200+ countries/regions
- Multiple flexible billing models: pay-per-GB, pay-per-IP, hourly unlimited rotating, and static residential
- Low entry pricing from $0.55/GB and $0.03/IP (enterprise tier)
- Accepts cryptocurrency alongside PayPal, Alipay, credit card and UnionPay
- Pay-per-IP credits never expire while unused
- Supports both rotating and sticky sessions with HTTP/HTTPS/SOCKS5 protocols
- Public API and dashboard for configuration and monitoring
- Strict no-refund policy once an order is placed or proxies are used
- No free trial documented on the official site
- No independently verified benchmarks; uptime/latency/success-rate figures are vendor-published only
- Pool size is a marketing claim; older materials cited a smaller 50M+ figure
- Mixed third-party reviews, including IP-quality complaints on some static products
- Founded year and headquarters not disclosed; service unavailable in mainland China
Pricing A+ · Performance B · Pool quality A+ · Support B · Ethics B
Each axis is graded A+ to D using our standard rubric: how we score →
Who should not use 711Proxy?+
What we think after testing 711Proxy
Editorial review by Maya Cortez · last tested Jul 9, 2026
711Proxy is a residential-proxy provider that positions itself as a high-volume, budget-oriented option for scraping, e-commerce, ad verification and affiliate-marketing use cases. According to its official website, the network spans over 100 million residential IPs across 200+ countries and regions, with the homepage citing a figure of roughly 6.85 million daily-updated IPs. Independent review sites broadly echo the 100M+ / 200-country claim, though some older marketing materials referenced a smaller 50M+ pool, so the current vendor-stated 100M+ number should be treated as a marketing figure rather than an independently audited one. No neutral third party publishes a verified pool count.
The product catalog is unusually broad for a mid-tier provider. On published specifications, 711Proxy offers pay-per-GB residential proxies, pay-per-IP residential proxies, unlimited rotating proxies billed by the hour, static/dedicated residential proxies, and standalone SOCKS5 proxies. Protocol support covers HTTP, HTTPS and SOCKS5. Rotating and sticky sessions are both supported, and targeting is available at the country and state level; the provider's documentation also references city-level access, but city and ASN targeting are not clearly confirmed as self-serve options on the main product pages, so they are left unconfirmed here. Authentication is via username/password or IP whitelisting, and a public API is available at api.711proxy.com. An intuitive dashboard is described for configuration and monitoring, but no dedicated browser extension is advertised.
On pricing, the numbers are competitive. According to their pricing page, pay-per-IP residential proxies scale from a regular $0.2/IP (50 IPs for $10) down to $0.05/IP (2,000 IPs for $100), with an enterprise tier starting at $0.03/IP. The homepage advertises pay-per-GB residential proxies from $0.55/GB, static residential proxies from $3.5/IP, unlimited rotating proxies from $15/hour, and pay-per-IP residential from $0.03/IP. A notable feature for pay-per-IP plans is that purchased IP credits never expire while unused. One quirk worth flagging: on the pay-per-IP model each extracted IP is usable for a window (roughly 30 minutes to 6 hours), after which continued use of the same IP consumes an additional credit.
Payment methods are relatively generous, listed on the pricing page as PayPal, cryptocurrency, Alipay, credit card and UnionPay, so crypto is accepted. The refund situation, however, is a clear weak point: the official refund policy states that '"we do not offer any refunds after the order is placed or the proxies are used,"' covering residential, unlimited, SOCKS5 and dedicated static proxies. No formal money-back window is published, and no explicit free trial is documented on the official site, so buyers should validate compatibility before committing funds.
Reputation is mixed. Several review outlets (IPFighter, Avenacloud, Dolphin) describe it as a versatile, budget-friendly provider with good customer service and flexible billing, while Trustpilot carries mixed feedback including complaints about IP quality on certain static products; 711Proxy has responded by distinguishing its 'Native Residential IP' from 'ISP/broadcast residential IP' tiers. On benchmarks, the site does publish its own numbers: 99.9% uptime, latency under 0.3 seconds, and a 99.7% success rate. These are vendor-published claims, not independently verified, and no neutral benchmark study corroborates them, so they should be read as marketing figures.
711Proxy is best for users who want a wide menu of residential proxy billing models (GB, IP, port and hourly-unlimited) at aggressive entry prices, especially those comfortable buying without a refund safety net and validating quality up front. It is best avoided by teams that require a money-back guarantee, an audited pool size, or clearly documented city/ASN targeting and SLA-backed performance. Founded year and headquarters are not disclosed on the official site, and the service is noted as unavailable in mainland China.
IP pool size — ranked
Where 711Proxy ranks against the largest networks in the directory. Bars are scaled to 350M.
Bars rank total advertised IP pool size. 711Proxy publishes Over 100M residential IPs — see the full breakdown in the specs above.
Pricing
From $0.55/GB. Detailed plan breakdown not yet published.
View plans on 711Proxy →Proxy types offered
2 types available. Pricing varies by type and volume.
Residential $0.55/GB
Over 100M residential IPs real-home IPs across 200 countries.
ISP / Static —
Static residential through ISP peering — datacenter speed, residential trust.
Features & integrations
What's included out of the box.
Network & infrastructure
How the pool is built, refreshed and addressed.
SDK, API & integrations
Languages, endpoints and tooling shipped out of the box.
Code examples
Drop-in snippets to start using 711Proxy from your stack. Replace USER, PASS and the gateway with what you get from your dashboard.
# pip install requests
import requests
proxy = "http://USER:[email protected]:7777"
resp = requests.get(
"https://httpbin.org/ip",
proxies={"http": proxy, "https": proxy},
timeout=10,
)
print(resp.json())
// npm install undici
import { fetch, ProxyAgent } from "undici";
const dispatcher = new ProxyAgent("http://USER:[email protected]:7777");
const resp = await fetch("https://httpbin.org/ip", { dispatcher });
console.log(await resp.json());
curl -x http://USER:[email protected]:7777 \
https://httpbin.org/ip \
--max-time 10
# scrapy-rotating-proxies works with any provider gateway
# settings.py:
DOWNLOADER_MIDDLEWARES = {
"scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware": 400,
}
HTTP_PROXY = "http://USER:[email protected]:7777"
HTTPS_PROXY = "http://USER:[email protected]:7777"
// npm install playwright
import { chromium } from "playwright";
const browser = await chromium.launch({
proxy: {
server: "http://gate.711proxy.com:7777",
username: "USER",
password: "PASS",
},
});
const page = await browser.newPage();
await page.goto("https://httpbin.org/ip");
console.log(await page.locator("body").innerText());
await browser.close();
Company & resources
Who builds and operates this product.
Key markets covered
200+ countries served.
711Proxy vs alternatives
How 711Proxy stacks up against the closest providers in our directory. Tap any column header to read that review.
How to get started with 711Proxy
A 5-minute walkthrough from sign-up to your first successful request. Total setup time: ~10 minutes.
-
1
Register for a self-serve account
Create a 711Proxy account at https://711proxy.com. Self-serve access is usually available immediately.
-
2
Select the right plan for your workload
Use the dashboard to choose between Residential / Static Residential / Rotating. Start with the smallest plan to validate your workload before scaling.
-
3
Configure user:pass or IP whitelist
Set up either an IP-whitelist auth or username:password pair from the dashboard. Save the proxy hostname + port into your scraper or browser config.
-
4
Decide rotate-per-request vs sticky
Decide between rotating-on-every-request (best for SERP scraping) or sticky sessions (best for account-based workflows).
-
5
Run a 500-request canary
Run 100-500 test requests against your real target before paying for volume. Compare success rate to 711Proxy's claimed rate before committing to an annual plan.
Stuck? Check 711Proxy's documentation or email us.
User reviews
No reader reviews yet — be the first below.
Used 711Proxy? Write a review+
FAQ
The questions buyers actually ask.
