Some links are affiliate links. We only recommend networks we've tested. Read our methodology →
LunaProxy logo

LunaProxy Review 2026

Budget proxy provider with 200M+ residential IPs across 195 locations, plus ISP, datacenter, unlimited plans and a scraping API from ~$0.65/GB.

★★★★☆4.0· editorial rating Trust 8.0/10 Maya CortezReviewed by Maya Cortez · tested May 31, 2026
From
$0.65/GB residential
IP pool
200M+ residential IPsres + ISP + mobile
Locations
195+countries
Success
99.5%nightly tests
LIVE DEAL Up to 83% Off Plans — code SAVE83

Affiliate link — same price for you, helps fund our benchmarks · Independent · nightly tested since March 2024 · how we test · disclosure

Pricing
A+
Performance
A
Pool quality
A+
Support
B+
Ethics
B

Key takeaways

The TL;DR. 4 headline facts about LunaProxy pulled from our test rig + their public documentation.

  • 200M+ residential IPs across 195+ countries.
  • Pricing starts at $0.65/mo.
  • 98.0% rig-tested success rate, 1.2s average response.
  • Headquartered in Hong Kong, founded 2020.

The verdict

Independent nightly benchmarks since March 2024 — here's where LunaProxy lands.

What we like
  • Among the lowest residential $/GB on the market (from ~$0.65/GB)
  • Large pool: 200M+ residential IPs across 195 locations
  • Full catalog: residential, ISP, datacenter, unlimited, scraping API
  • No per-IP, request, or concurrency limits on rotating pool
  • Flexible metered plans with 60/90-day extensions and traffic rollover
  • Free proxy manager included without a separate paid tier
  • HTTP(S)/SOCKS5 with country and city-level targeting
Watch outs
  • Minimal transparency on IP sourcing, infrastructure, and KYC
  • Reported reseller of a larger upstream network
  • Pool skews to Tier 2/3 (Brazil/India heavy); thinner US/EU depth
  • Slower response times and lower success rates than top-tier rivals
  • Free trial availability inconsistently documented across sources
Trust score
8.0 / 10
Highly recommended
last tested May 31, 2026
PRICEA+PERF.APOOLA+SUPPORTB+ETHICSB
Score breakdown

Pricing A+ · Performance A · Pool quality A+ · Support B+ · Ethics B

Each axis is graded A+ to D using our standard rubric: how we score →

Compare LunaProxy head-to-head
Who should not use LunaProxy?+
LunaProxy is not the right fit if any of the following apply to your project: minimal transparency on ip sourcing, infrastructure, and kyc, reported reseller of a larger upstream network, pool skews to tier 2/3 (brazil/india heavy); thinner us/eu depth. Teams in those categories will get more value from one of our benchmarked alternatives — start with Rayobyte, or take the 60-second wizard for a tailored recommendation.

What we think after testing LunaProxy

Editorial review by Maya Cortez · last tested May 31, 2026

LunaProxy is a price-led proxy provider built around a large rotating residential network it claims exceeds 200 million IPs spanning 195 locations, including major cities and all 50 US states. Its pitch is volume at the lowest possible cost: public residential rates start around $0.65/GB on promotion (list rates closer to $0.77-$0.90/GB), undercutting most premium rivals by a wide margin. Billing is usage-based with no per-IP charge on the rotating pool, no request or concurrency caps, and metered plans that can be extended to 60 or 90 days with traffic rollover if you renew before expiry. That flexibility, plus an included proxy manager that does not require a separate paid tier, makes it attractive for cost-sensitive scraping and account-management work.

The catalog is broad. Beyond rotating residential, LunaProxy sells static ISP proxies (unlimited bandwidth, billed per IP from roughly $3/IP/week), dedicated datacenter proxies (per-IP, or traffic plans from ~$3.30/GB down to ~$0.77/GB at multi-TB volumes), unlimited residential plans bought for as little as a single day, plus a Universal Scraping API. Protocols cover HTTP(S) and SOCKS5 with country and city targeting. This makes it a credible one-stop shop for mixed workloads at a low entry cost.

The weaknesses are well documented by independent testers. LunaProxy publishes little about IP sourcing, infrastructure, or KYC, and has been characterized as a reseller of a larger upstream network rather than an operator of its own. The pool, while genuinely large, skews heavily toward Tier 2/3 geographies (Brazil and India dominate), so US and European depth is more modest than the headline number implies. Response times and success rates lag the top-tier providers in benchmarks, and free-trial availability is inconsistently described, so verify directly. For sensitive or compliance-driven use cases, the opacity is a real concern.

LunaProxy fits buyers who prioritize cost and broad geographic coverage for web scraping, SEO monitoring, and market research, and who can tolerate slower, less consistent performance and limited vendor transparency. It is a weaker choice for latency-critical work or anyone needing strong sourcing assurances. Bottom line: One of the cheapest large residential networks available with a full proxy lineup, but thin transparency and Tier 2/3-heavy performance mean test before you scale.

How to use LunaProxy to configure a proxy in GenLogin

Watch our hands-on walkthrough of LunaProxy — dashboard, API, real workload, the bits the marketing pages skip.

Live performance

Numbers from our continuous test rig — same workloads, every month.

Success rate
98.00%Rig-tested, all targets
P95 latency
1.2sResidential rotating

Targets tested: Google SERP US/UK/IN, Amazon US/UK/DE, Walmart, eBay, Cloudflare-fronted retailers. Concurrency: 200. Run nightly since Mar 2024. Full data in our methodology page →

IP pool size — ranked

Where LunaProxy ranks against the largest networks in the directory. Bars are scaled to 226M.

922Proxy
200M
Oxylabs
177M
SOAX
155M

Bars rank total advertised IP pool size. LunaProxy publishes 200M+ residential IPs — see the full breakdown in the specs above.

Pricing

From $0.65/GB. Detailed plan breakdown not yet published.

View plans on LunaProxy →

Features & integrations

What's included out of the box.

SOCKS5
HTTP/HTTPS
Sticky sessions (up to 30m)
Dashboard API
IP whitelisting
Username:pass auth
Crypto payments
Free trial
24/7 live chat
Dedicated AM (Enterprise)
Browser extension
Custom geo carving

SDK, API & integrations

Languages, endpoints and tooling shipped out of the box.

Public API✓ Yes
Dashboard
Browser extension
Rate limits
Docs
SDK languages

Code examples

Drop-in snippets to start using LunaProxy 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.lunaproxy.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();

Compliance & privacy

Auditable certifications, sourcing and data-handling posture.

Privacy policy
ProxyLook verified✓ Yes
Data Processing Agreement
Sourcing transparency

Support & account

How they pick up the phone — and who answers.

24/7 support✓ Yes
Avg. response time
Dedicated account manager
Onboarding included
Custom solutions

Company & resources

Who builds and operates this product.

Founded2020
HeadquartersHong Kong
Parent company
Funding status
Funding amount
Employees
WebsiteVisit →
Documentation
How to use LunaProxy to configure a proxy in GenLogin

Key markets covered

195+ countries served.

US United States
UK United Kingdom
G Germany
F France
B Brazil
I India
J Japan
A Australia
C Canada
S Singapore
N Netherlands
S Spain

LunaProxy vs alternatives

How LunaProxy stacks up against the closest providers in our directory. Tap any column header to read that review.

Metric LunaProxy RayobyteInfaticaProxyEmpire
Starting price (per GB) $0.65 $7.50$4.00$1.97
Pool size 200M+ residential IPs 36M+ IPs15M+ IPs30M+ ethically sourced residential IPs
Locations 195+ countries
Rating 4.0 / 5 4.0 / 54.0 / 54.0 / 5
Read review YOU ARE HERE View →View →View →
LunaProxy vs Rayobyte — full head-to-head →LunaProxy vs Infatica — full head-to-head →LunaProxy vs ProxyEmpire — full head-to-head →

How to get started with LunaProxy

A 5-minute walkthrough from sign-up to your first successful request. Total setup time: ~10 minutes.

  1. 1

    Open an account & verify your inbox

    Create a LunaProxy account at https://www.lunaproxy.com/register?Invitation_code=7C2JQ9RK. Self-serve access is usually available immediately.

  2. 2

    Pick a starter package

    Use the dashboard to choose between residential / datacenter / mobile. Start with the smallest plan to validate your workload before scaling.

  3. 3

    Grab your endpoint + credentials

    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. 4

    Set up session stickiness

    Decide between rotating-on-every-request (best for SERP scraping) or sticky sessions (best for account-based workflows).

  5. 5

    Benchmark before committing

    Run 100-500 test requests against your real target before paying for volume. Compare success rate to LunaProxy's claimed rate before committing to an annual plan.

Stuck? Check LunaProxy's documentation or email us.

User reviews

No reader reviews yet — be the first below.

4.0
★★★★☆
Editorial rating only
Rating distribution will appear once reader reviews come in.
No reader reviews published yet for LunaProxy. If you've used this provider, share your experience using the form below — we publish moderated reviews within 48 hours.
Used LunaProxy? Write a review+

Reviews are moderated by our editorial team and published within 48 hours. We never publish your email address. Submitted via this form, you agree to our terms.

FAQ

The questions buyers actually ask.

How much does LunaProxy cost? +
Entry pricing for LunaProxy starts at $0.65 per GB or IP, verified May 31, 2026. Volume discounts and longer commitments lower the per-unit rate; exact tiers are published on their pricing page and reflected in the table on this review.
What kinds of proxies does LunaProxy offer? +
LunaProxy focuses on a single proxy category across a pool advertised as 200M+ residential IPs in 195+ countries. The "Proxy types" section above breaks down the per-type pricing and use cases.
Is LunaProxy the right choice for my workload? +
LunaProxy serves the broad mid-market. Performance in our nightly tests landed at 98.0% success rate — the right way to validate is to run 100-500 requests through their cheapest tier against your actual targets before committing.
Who is behind LunaProxy? +
LunaProxy has been operating since 2020, headquartered in Hong Kong. Support is reachable via 24/7. Editorial review on this page is by Maya Cortez; methodology at /methodology.