TL;DROur verdict on HProxy, in 5 facts
- Full-spectrum proxy provider (residential, mobile, ISP, datacenter) based in Mönchengladbach, Germany.
- Residential proxies start from about $0.99/GB on a pay-as-you-go, per-GB model with no subscription required.
- Published network spans 195+ countries with 50M-72M+ IPs by tier, HTTP/HTTPS/SOCKS5, and sticky sessions up to 24 hours.
- Small six-person, founder-led operation; support is responsive but effectively single-person.
- Refund window is a short 24 hours, so validate performance quickly using the startup credit.
The verdict
Independent nightly benchmarks since March 2024 — here's where HProxy lands.
- Broad proxy-type coverage (residential, mobile, ISP, datacenter) from a single vendor
- Competitive residential entry pricing from about $0.99/GB
- Pay-as-you-go billing with no mandatory subscription
- Small startup credit lets you test before committing
- HTTP/HTTPS/SOCKS5 with rotating and sticky sessions up to 24 hours
- Country, state, city, and ISP-level targeting on the residential network
- API access and no SDK required for standard HTTP tooling
- Very small team with support effectively handled by one person
- Short 24-hour refund window on unused balance
- No confirmed 24/7 human support desk (24/7 proxy monitoring only)
- Crypto payment support and exact payment methods not confirmed on the official site
- No documented browser extension or standalone proxy manager beyond the dashboard
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 HProxy?+
What we think after testing HProxy
Editorial review by Maya Cortez · last tested Jul 9, 2026
HProxy positions itself as a lean, price-competitive proxy provider covering the full spectrum of proxy types under one roof: residential, mobile, ISP (static residential), and datacenter. Based on its published specifications, the residential network is the flagship product, advertised across 195+ countries with a tiered pool ranging from roughly 50 million to 72 million-plus IP addresses depending on the plan selected. Entry pricing for residential proxies is listed from approximately $0.99/GB, with tier prices published up to around $1.50/GB, placing HProxy firmly in the budget-to-mid segment of the market rather than the premium enterprise tier occupied by the largest incumbents.
The pricing model is one of HProxy's clearer differentiators. Rather than requiring a monthly commitment, the provider advertises a pay-as-you-go structure billed per gigabyte, which is attractive for smaller operators, testers, and projects with unpredictable bandwidth needs. New accounts are given a small startup credit (listed as $2) to trial the service, and the site references a $5 minimum to add funds thereafter. A 24-hour refund window on unused balance is published, though this is notably short compared to the multi-day or multi-week guarantees offered by many competitors, so buyers should test quickly if they intend to rely on that protection.
On technical capability, the published specifications are reasonably complete for the residential product. HProxy lists HTTP, HTTPS, and SOCKS5 protocol support, both rotating (new IP per request) and sticky sessions of up to 24 hours, and targeting granularity down to country, state, city, and ISP level. The provider explicitly states that no SDK is required and that the proxies work with standard HTTP clients and common automation and scraping tools such as Python, Node.js, Go, Rust, Puppeteer, Playwright, Selenium, and Scrapy. An API is advertised for programmatic access, and proxy strings are generated through a dashboard. These are sensible, industry-standard capabilities that should satisfy typical web-scraping, account-management, and multi-step automation workflows.
The mobile offering is presented separately, with shared plans from around $9.99/month and private (dedicated) plans from around $19.99/month, unlimited bandwidth, real carrier NAT, and free instant replacements. ISP proxies are advertised from roughly $1.20/IP and datacenter proxies from roughly $1.50/IP with unmetered bandwidth on the datacenter tier. This breadth is unusual for a provider of HProxy's size and gives buyers flexibility to consolidate multiple proxy types with a single vendor.
The most significant caveat is scale and support. HProxy is transparent that it is a small operation. Its own materials describe a six-person team working from a Mönchengladbach-based workshop, and independent commentary consistently notes that customer support is effectively handled by a single person. Reviewers describe that individual as responsive and effective at solving problems, but the absence of a multi-shift, time-zone-spanning support team is a real consideration for businesses running mission-critical or 24/7 operations. The site references 24/7 monitoring of proxies and states that support reads every email, but a true always-available human support desk is not confirmed on the published specifications.
Several common purchasing criteria remain unconfirmed on the official site and should be verified directly before committing. There is no clear published confirmation of cryptocurrency payment support, no documented browser extension, and no distinct standalone proxy-manager product beyond the account dashboard. Explicit payment methods are not enumerated on the pages reviewed. ASN-level targeting is not clearly advertised, although ISP-level targeting is. As with any provider, no independent performance benchmarks (success rate, response time, uptime) are treated as verified here; any such figures should be regarded as vendor claims until independently tested.
On balance, HProxy reads as a credible, competitively priced option for individuals and small teams who value flexible pay-as-you-go billing, broad proxy-type coverage, and direct, founder-led support, and who do not require the reassurance of a large support organization or the deeper compliance and SLA guarantees of an enterprise vendor. The full-spectrum product range and low entry pricing are genuine strengths; the small team, short refund window, and several unconfirmed purchasing details are the main reasons for caution. Prospective buyers should take advantage of the startup credit to validate performance for their specific targets before scaling spend.
IP pool size — ranked
Where HProxy ranks against the largest networks in the directory. Bars are scaled to 350M.
Bars rank total advertised IP pool size. HProxy publishes 50M-72M+ IPs depending on residential tier — see the full breakdown in the specs above.
Pricing
From $0.99/GB. Detailed plan breakdown not yet published.
View plans on HProxy →Proxy types offered
4 types available. Pricing varies by type and volume.
Residential $0.99/GB
50M-72M+ IPs depending on residential tier real-home IPs across 195 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.
Mobile —
Carrier-rotated 4G/5G IPs with country + carrier targeting.
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 HProxy 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.hproxy.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
195+ countries served.
HProxy vs alternatives
How HProxy stacks up against the closest providers in our directory. Tap any column header to read that review.
| Metric | HProxy | Spaw | 711Proxy | BirdProxies |
|---|---|---|---|---|
| Starting price (entry plan) | $0.99 | $49.99 | $0.55 | $2.50 |
| Pool size | 50M-72M+ IPs depending on residential tier | 5.5M+ IPs | Over 100M residential IPs | 10M+ residential IPs (vendor claim) |
| Locations | 195+ countries | — | — | — |
| Rating | 3.3 / 5 | 3.3 / 5 | 3.3 / 5 | 3.3 / 5 |
| Read review | YOU ARE HERE | View → | View → | View → |
How to get started with HProxy
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 HProxy account at https://hproxy.com. Self-serve access is usually available immediately.
-
2
Choose your proxy mix
Use the dashboard to choose between Residential / Mobile / ISP. 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 HProxy's claimed rate before committing to an annual plan.
Stuck? Check HProxy's documentation or email us.
User reviews
No reader reviews yet — be the first below.
Used HProxy? Write a review+
FAQ
The questions buyers actually ask.
