TL;DROur verdict on FlyProxy, in 5 facts
- Rotating residential proxies start at a confirmed $2.50/GB (20 GB plan), scaling down to $1.90/GB at 200 GB.
- Operated by Bohuan Network Technology Co., Limited in Hong Kong, founded in 2023.
- Advertises 100M+ residential IPs across 195+ countries with city-level targeting, HTTP(S)/SOCKS5, and crypto payment.
- Free trial is limited to 500 MB on request, and the vendor states it does not support refunds once sold.
- All performance metrics are vendor-advertised; no independent benchmarks were conducted.
The verdict
Independent nightly benchmarks since March 2024 — here's where FlyProxy lands.
- Broad product line: rotating residential, static residential, unlimited residential, ISP, and datacenter proxies
- Large advertised pool of 100M+ real device IPs across 195+ countries
- Country, state, and city-level targeting plus automatic rotation and sticky sessions
- HTTP(S) and SOCKS5 support with unlimited concurrent sessions
- Accepts cryptocurrency (BTC, ETH, USDT) alongside Visa and Mastercard
- API extraction, sub-account management, and antidetect-browser compatibility
- 500 MB free trial traffic available on request
- Homepage states no refunds once products are sold
- No self-serve free trial; trial traffic is gated behind contacting support
- Young provider (2023) with limited independent track record
- Headline $0.80/GB price applies only to very high-volume plans, not entry tiers
- Performance figures (success rate, uptime, latency) are vendor claims with no independent verification
- No clearly documented proprietary browser extension
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 FlyProxy?+
What we think after testing FlyProxy
Editorial review by Maya Cortez · last tested Jul 9, 2026
FlyProxy is a residential-focused proxy provider run by Bohuan Network Technology Co., Limited, registered in Kwun Tong, Hong Kong, and launched in 2023. Based on published specifications, it fields a fairly broad product line for a relatively young vendor: rotating residential proxies sold per gigabyte, static residential and static datacenter proxies sold per IP, an 'unlimited' residential product billed per day, and long-acting ISP proxies. The company advertises a pool of 100M+ real device IPs with coverage described as 195+ countries and regions, which places it, on paper, in the same broad tier as many mid-market residential vendors.
On network and sourcing, everything here is vendor-stated. FlyProxy describes its residential IPs as coming from real residential devices rather than datacenter servers, and lists dedicated (non-shared) usage while a proxy is active. The company publishes performance figures such as a 99.5% success rate on its residential product page (its marketing elsewhere cites 99.95%), sub-second to single-digit-millisecond response times, and 99.9% uptime. These are advertising claims and should be read as such; there are no independent, reproducible benchmarks confirming them, so this review does not assign any measured success-rate, latency, or uptime numbers.
Targeting and rotation are relatively well-specified. The residential product supports country, state, and city-level targeting plus geo-location targeting, with automatic proxy rotation and sticky sessions both available, and unlimited concurrent sessions advertised. Static residential and ISP products add provider/ASN-style targeting and session persistence for use cases that require a stable IP, such as account management. Access is via username/password authentication or IP whitelisting, and proxies can be pulled through the dashboard or an API extraction endpoint. FlyProxy also offers sub-account management for splitting traffic across users or teams.
Protocol support covers HTTP(S) and SOCKS5 across products, which is standard and adequate for scraping, multi-accounting, and automation tooling. FlyProxy leans heavily on antidetect-browser compatibility as a selling point, advertising recognition by Multilogin, Dolphin, AdsPower, MoreLogin, VMLogin, and similar fingerprint browsers; note that this is integration compatibility rather than a proprietary FlyProxy browser extension, and the site does not clearly document a first-party extension.
On pricing, the confirmed entry point for rotating residential proxies is $2.50/GB on the smallest 20 GB plan ($50 total), stepping down to $2.40/GB at 50 GB, $2.00/GB at 100 GB, and $1.90/GB on the 'most popular' 200 GB plan. The widely promoted '$0.80/GB' figure is a floor rate that applies only to very high-volume commitments, not the starting price, so buyers evaluating small plans should expect the $2.00-$2.50/GB range. Plans carry a default 30-day validity window that can be adjusted. Static residential proxies are billed per IP per month and unlimited residential is billed per day, though exact per-IP entry pricing was not cleanly confirmed from the public pricing UI at the time of review. Payment methods include Visa, Mastercard, and cryptocurrency (Bitcoin, Ethereum, and USDT), which is useful for privacy-conscious buyers.
On trials and refunds, FlyProxy offers 500 MB of free trial traffic on request through customer service rather than a self-serve free trial. The refund situation is a clear caution: the homepage states the company does not support refunds once products are sold, and a dedicated Refund Policy page exists but its exact terms were not extracted here. Prospective buyers should read that policy carefully before committing, since a no-refund stance combined with contact-gated trials raises the risk of buying more than you can evaluate up front.
Reputationally, FlyProxy appears across several third-party proxy-review directories and antidetect-browser partner pages, and is reported to hold a favorable Trustpilot score, but as a 2023 entrant it lacks the long public track record of established residential vendors, and the review ecosystem around it includes a notable amount of affiliate-driven content. Best for: budget-to-mid-market scraping and multi-accounting users who want broad country coverage, crypto payment, antidetect-browser compatibility, and per-GB residential access without enterprise pricing. Worth avoiding, or at least approaching cautiously, if you need contractually guaranteed refunds, independently verified performance SLAs, or a mature, heavily audited enterprise vendor. No independent benchmarks were run for this review; all performance figures are vendor claims.
IP pool size — ranked
Where FlyProxy ranks against the largest networks in the directory. Bars are scaled to 350M.
Bars rank total advertised IP pool size. FlyProxy publishes 100M+ real device IPs — see the full breakdown in the specs above.
Pricing
From $2.50/GB. Detailed plan breakdown not yet published.
View plans on FlyProxy →Proxy types offered
3 types available. Pricing varies by type and volume.
Residential $2.50/GB
100M+ real device IPs 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.
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 FlyProxy 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.flyproxy.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.
FlyProxy vs alternatives
How FlyProxy stacks up against the closest providers in our directory. Tap any column header to read that review.
| Metric | FlyProxy | Spaw | 711Proxy | BirdProxies |
|---|---|---|---|---|
| Starting price (entry plan) | $2.50 | $49.99 | $0.55 | $2.50 |
| Pool size | 100M+ real device IPs | 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 FlyProxy
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 FlyProxy account at https://flyproxy.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 / Unlimited Residential. 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 FlyProxy's claimed rate before committing to an annual plan.
Stuck? Check FlyProxy's documentation or email us.
User reviews
No reader reviews yet — be the first below.
Used FlyProxy? Write a review+
FAQ
The questions buyers actually ask.
