TL;DROur verdict on ProxyLite, in 5 facts
- Residential-first provider claiming 72M+ IPs across 190+ countries with a broad multi-model product menu.
- Pricing spans per-GB, per-IP and hourly-unlimited, but the advertised $1.05/GB differs from the $3.00/GB entry package.
- Crypto is accepted and a 500MB free trial is offered, but refunds are conditional and exclude crypto/static/unlimited plans.
- All performance numbers (success rate, ~0.6s response, ~99.5% uptime) are self-published and unverified.
- Operated by YUANFENG INFORMATION TECHNOLOGY LIMITED, headquartered in Kwun Tong, Hong Kong.
The verdict
Independent nightly benchmarks since March 2024 — here's where ProxyLite lands.
- Large vendor-stated pool of 72M+ residential IPs across 190+ countries
- Broad product menu: rotating residential, static residential, static datacenter, ISP and unlimited (hourly) plans
- Country, state and city-level targeting advertised
- Supports both rotating and sticky sessions with HTTP/SOCKS protocols
- Accepts cryptocurrency and offers a 500MB free trial after registration
- Public API with Python, cURL, Node.js and PHP examples, plus Scraper API and SERP API tooling
- Corporate entity and Hong Kong headquarters disclosed on the official about page
- Restrictive conditional refund policy (14-day window, under 1GB used, new customers only)
- Crypto, static residential and unlimited plans are explicitly non-refundable
- Inconsistent pricing: homepage advertises $1.05/GB but buy page entry package is $3.00/GB
- Performance figures (success rate, response time, uptime) are vendor-published only and unverified
- 24/7 support is claimed on the homepage but the FAQ states a within-24h reply commitment
- Founded year not disclosed on the official site
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 ProxyLite?+
What we think after testing ProxyLite
Editorial review by Maya Cortez · last tested Jul 9, 2026
ProxyLite is a residential-proxy provider that positions itself as a broad, budget-oriented option for web scraping, ad verification, social media management and multi-accounting. According to its official website, the network spans 72M+ residential IPs across 190+ countries and regions. This is a vendor-stated marketing figure rather than an independently audited count, and no neutral third party publishes a verified pool size for ProxyLite, so the 72M+ number should be treated as a claim rather than a measured value.
The product catalog is unusually wide. On published specifications, ProxyLite offers rotating residential proxies, static residential proxies, static datacenter proxies, ISP (long-acting) proxies, and an unlimited residential plan billed by the hour. Protocol support is listed on the residential product page as HTTP and SOCKS. The homepage states that rotation is supported with customizable rotation times and that sticky sessions are available, alongside country, state, city and ISP-level targeting. City-level targeting is advertised on the homepage, though the main residential purchase page does not itemize city or ASN targeting, so ASN-level targeting is left unconfirmed. A public API with Python, cURL, Node.js and PHP code examples is documented, and the provider also markets ancillary tooling including a Web Scraper API, a SERP API, a proxy checker, and web-unlocker/free-proxy utilities.
On pricing, the picture is mixed and internally inconsistent. The homepage advertises residential proxies 'from $1.05/GB,' with static residential from $5.50/IP, static datacenter from $2.10/IP, ISP proxies from $0.75/GB, and unlimited residential from $9.82/hour. However, the residential buy page shows the smallest self-serve package at $3.00/GB (10GB for $30.00), so the $1.05/GB headline figure appears to be a promotional or high-volume rate rather than the entry self-serve price. Buyers should confirm the effective per-GB rate for their intended volume before purchasing. The pricing model is primarily pay-per-GB for residential and ISP traffic, with per-IP pricing for static products and hourly billing for the unlimited plan.
Payment and refund terms are a notable consideration. The FAQ confirms cryptocurrency is accepted, and third-party directories additionally reference Visa/Mastercard and a range of local payment options, though the official FAQ itself does not enumerate a complete card list. The refund policy is conditional and restrictive: refunds are offered only to new users who purchased through customer service, cancel within 14 days, have used under 1GB of bandwidth, and did not buy unlimited or static residential plans or pay with cryptocurrency. In other words, crypto purchases, static residential and unlimited plans are explicitly non-refundable. A free trial exists in the form of 500MB of complimentary traffic granted after registration, which lowers the risk of committing blind.
On support, the official FAQ lists email and live chat, plus a help center and FAQ resources, and states the team will reply within 24 hours. The homepage references '24/7 customer support,' but the FAQ's own 'within 24h' response commitment makes a true round-the-clock SLA unconfirmed, so 24/7 support is left unverified here. The company also advertises multilingual support across several languages.
Regarding performance, ProxyLite's own pages advertise figures such as a 99% (and elsewhere 99.5%) success rate, roughly 0.6s average response time, and around 99.5% uptime. These are vendor-published marketing claims, not independently verified benchmarks, and no neutral benchmark study corroborates them, so they are recorded as null here and should be read as claims only. Corporate details are disclosed on the official about page: the operating entity is YUANFENG INFORMATION TECHNOLOGY LIMITED, headquartered at New City Centre, Lei Yue Mun Road, Kwun Tong, Hong Kong. A founding year is not stated on the official site; third-party directories suggest 2024, but that is not officially confirmed and is therefore left null.
ProxyLite is best suited to users who want a wide menu of residential billing models (per-GB, per-IP, hourly unlimited) with country/state/city targeting and are comfortable validating quality via the 500MB free trial before committing. It is less suitable for teams that require an audited pool size, a clear money-back guarantee (especially crypto buyers), or independently verified performance SLAs. The gap between the advertised $1.05/GB headline and the $3.00/GB entry package on the buy page is worth scrutinizing before purchase.
IP pool size — ranked
Where ProxyLite ranks against the largest networks in the directory. Bars are scaled to 350M.
Bars rank total advertised IP pool size. ProxyLite publishes 72M+ IPs — see the full breakdown in the specs above.
Pricing
From $1.05/GB. Detailed plan breakdown not yet published.
View plans on ProxyLite →Proxy types offered
3 types available. Pricing varies by type and volume.
Residential $1.05/GB
72M+ IPs real-home IPs across 190 countries.
Datacenter —
High-throughput shared & dedicated DC IPs. Sub-second response on US/EU PoPs.
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 ProxyLite 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.proxylite.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
190+ countries served.
ProxyLite vs alternatives
How ProxyLite stacks up against the closest providers in our directory. Tap any column header to read that review.
| Metric | ProxyLite | Proxyscrape | Proxy Luxe | Proxymania |
|---|---|---|---|---|
| Starting price (entry plan) | $1.05 | $19.00 | $0.80 | — |
| Pool size | 72M+ IPs | 120M+ residential IPs (plus ~40,000 datacenter IPs) | Millions of IP addresses (vendor claim) | 15M+ residential IPs (vendor claim) |
| Locations | 190+ countries | — | — | — |
| Rating | 3.1 / 5 | 3.1 / 5 | 3.1 / 5 | 3.1 / 5 |
| Read review | YOU ARE HERE | View → | View → | View → |
How to get started with ProxyLite
A 5-minute walkthrough from sign-up to your first successful request. Total setup time: ~10 minutes.
-
1
Create an account and confirm email
Create a ProxyLite account at https://proxylite.com. Self-serve access is usually available immediately.
-
2
Choose your proxy mix
Use the dashboard to choose between Residential / Static Residential / Static Datacenter. Start with the smallest plan to validate your workload before scaling.
-
3
Set up your proxy auth
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
Tune rotation policy for your target
Decide between rotating-on-every-request (best for SERP scraping) or sticky sessions (best for account-based workflows).
-
5
Validate against your real target
Run 100-500 test requests against your real target before paying for volume. Compare success rate to ProxyLite's claimed rate before committing to an annual plan.
Stuck? Check ProxyLite's documentation or email us.
User reviews
No reader reviews yet — be the first below.
Used ProxyLite? Write a review+
FAQ
The questions buyers actually ask.
