TL;DROur verdict on Floxy, in 5 facts
- 1Estonia-based provider (founded ~2021) selling residential, ISP, datacenter and mobile proxies
- 2Advertises 30M+ residential IPs and 500K+ datacenter/ISP across 195+ countries
- 3Entry pricing: datacenter from $0.02/IP, ISP from $1.85/IP, residential and mobile from $3.00/GB
- 4Accepts crypto plus cards, Google Pay and Apple Pay; no free trial and no refunds per directory data
- 5Mixed reputation: some happy ISP users, but complaints about reliability and support — test small first
The verdict
Benchmark data and published specifications — here's where Floxy lands.
- Four proxy types under one dashboard and API: residential, ISP, datacenter and mobile
- Competitive entry pricing, including datacenter from $0.02/IP and ISP from $1.85/IP
- Large residential pool advertised at 30M+ IPs across 195+ countries
- Crypto payments accepted alongside Visa/Mastercard, Google Pay and Apple Pay
- Supports both rotating and static/sticky sessions with country and city targeting
- Static residential built on named premium ISPs (e.g. AT&T, Lumen) for persistent identity
- Five-year-old domain with published docs and an independently scanned safe/legitimate site
- No free trial and, per directory data, refunds are not provided
- Mixed Trustpilot feedback citing dead proxies and bot-driven, slow support
- Reported inconsistency between 'bandwidth never expires' checkout copy and a 3-month expiry
- No dedicated scraping API, web unblocker or SERP API product
- Smaller, lower-profile brand with a thin and uneven public review base
- Static residential coverage (~30+ countries) is much narrower than the 195+ headline
Pricing A+ · Performance A · Pool quality B+ · Support B · Ethics B
Each axis is graded A+ to D using our standard rubric: how we score →
Who should not use Floxy?+
What we think after testing Floxy
Editorial review by Maya Cortez · last updated Jul 16, 2026
Floxy (floxy.io) is a proxy infrastructure provider that, according to its website and third-party directory listings, is based in Estonia and has been operating since around 2021. It positions itself as a mid-tier provider for professional web data gathering, selling four core proxy products through a single dashboard and API: residential, ISP (static residential), datacenter, and mobile proxies. It is not one of the household-name proxy brands, but it has built up a modest public footprint of reviews and a directory presence by mid-2026.
On published specifications, Floxy advertises a residential pool of "30 Million+ Unique IPs" for global coverage, alongside "500K+ Datacenter/ISP" addresses, with reach across "195+ Countries." That residential figure is mid-sized rather than market-leading. The network is marketed as ethically sourced from real users and verified ISPs, which is the same compliance-oriented framing most reputable residential providers now use. For static residential / ISP proxies, the site references premium upstream ISPs (it names carriers such as AT&T, Sprint and Lumen) across roughly 30+ countries for that specific static product, which is narrower than the headline 195+ residential figure.
Pricing is the clearest part of Floxy's pitch. The homepage lists residential proxies starting at $3.00/GB, mobile proxies from $3.00/GB, ISP proxies from $1.85/IP, and datacenter proxies from $0.02/IP, making datacenter the cheapest entry point. Third-party directory data corroborates these bands, citing rotating residential and ISP around $2.25/IP/month at volume and a static residential option around $1.20/month, with some sources quoting residential at $2.99/GB. The residential per-GB price is roughly middle-of-market: cheaper than premium incumbents but not the lowest available. Payment methods are broad for a smaller provider, including crypto, Visa/Mastercard, Google Pay and Apple Pay, which is a genuine convenience for users who want anonymity or fast checkout.
On features, Floxy supports IP rotation as well as static/sticky assignments, country targeting, and city-level targeting per its feature matrix, plus API access for integration into scraping and automation stacks. It provides a unified dashboard covering all four proxy types and publishes documentation. There is no evidence of a dedicated scraping API, web unblocker, or SERP API product in Floxy's lineup; it sells proxy access rather than managed scraping endpoints, so teams needing turnkey anti-bot scraping would have to build that layer themselves. We did not find a browser extension referenced on the official site.
Who is it for? Floxy fits individual scrapers, automation users, and small-to-mid teams who want flexible proxy access across multiple types and pricing tiers without committing to an enterprise contract. The crypto-friendly checkout, low datacenter entry price, and static residential options make it reasonable for account management, monitoring, and persistent-identity tasks as well as rotating scraping work.
The caveats are important and should be weighed honestly. First, refund policy is a real weakness: directory data indicates Floxy offers no free trial and that refunds are not provided, so there is little room to test risk-free before committing funds. Second, public customer feedback is mixed and the sample is small. Trustpilot reviews include positive accounts (one user reported an ISP proxy that performed exactly as promised over three months) but also serious complaints about proxies going dead, bot-driven support that escalates without resolving, and at least one report of a USA mobile pool being removed without a refund. Reviewers have also flagged a possible advertising inconsistency between a checkout claim that "Residential Bandwidth never expires" and dashboard messaging about a 3-month bandwidth expiry, plus a claim that country targeting may not apply on the unlimited plan. These are individual reports, not verified findings, but the pattern is worth noting given the no-refund stance. Third, Floxy is a relatively young, lower-profile provider; many of the most glowing write-ups appear on affiliate-style review blogs, so independent feedback should be weighted accordingly.
We have not lab-tested Floxy, so we make no performance claims of our own. Some third-party sources cite vendor-style figures such as 95%+ residential success rates and 98%+ uptime, but these are not independently verified benchmarks and should be treated as marketing claims rather than measured results.
Live performance
Numbers from available benchmark data — our tests, independent lab reports and published specs.
Figures combine our test data, independent lab reports and published specifications — sourcing documented on our methodology page →
Editorial score breakdown
How Floxy scores across the five dimensions our reviewers weigh — pricing, performance, pool quality, support and ethics.
IP pool size — ranked
Where Floxy ranks against the largest networks in the directory. Bars are scaled to 350M.
Bars rank total advertised IP pool size. Floxy publishes 30M+ residential IPs (plus 500K+ datacenter/ISP) — see the full breakdown in the specs above.
Pricing
From $0.02/GB. Detailed plan breakdown not yet published.
View plans on Floxy →Proxy types offered
4 types available. Pricing varies by type and volume.
Residential $0.02/GB
30M+ residential IPs (plus 500K+ datacenter/ISP) 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.
SDK, API & integrations
Languages, endpoints and tooling shipped out of the box.
Code examples
Drop-in snippets to start using Floxy 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.floxy.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.
Company & resources
Who builds and operates this product.
Key markets covered
195+ countries served.
Floxy vs alternatives
How Floxy stacks up against the closest providers in our directory. Tap any column header to read that review.
| Metric | Floxy | JoinMassive | Live Proxies | ProxySale |
|---|---|---|---|---|
| Starting price (entry plan) | $0.02 | $80.00 | $70.00 | $0.07 |
| Pool size | 30M+ residential IPs (plus 500K+ datacenter/ISP) | 1M+ residential IPs advertised (~600k unique / ~300k concurrent in independent testing) | 10M+ residential & mobile IPs | Residential pool reported ~15M+ IPs (third-party); total network undisclosed, 400+ networks / 1,000+ subnets |
| Locations | 195+ countries | — | — | — |
| Rating | 3.7 / 5 | 3.7 / 5 | 3.7 / 5 | 3.7 / 5 |
| Read review | YOU ARE HERE | View → | View → | View → |
How to get started with Floxy
A 5-minute walkthrough from sign-up to your first successful request. Total setup time: ~10 minutes.
-
1
Open an account & verify your inbox
Create a Floxy account at https://floxy.io. Self-serve access is usually available immediately.
-
2
Pick a starter package
Use the dashboard to choose between Residential / Datacenter / ISP. Start with the smallest plan to validate your workload before scaling.
-
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
Set up session stickiness
Decide between rotating-on-every-request (best for SERP scraping) or sticky sessions (best for account-based workflows).
-
5
Benchmark before committing
Run 100-500 test requests against your real target before paying for volume. Compare success rate to Floxy's claimed rate before committing to an annual plan.
Stuck? Check Floxy's documentation or email us.
User reviews
No reader reviews yet — be the first below.
Used Floxy? Write a review+
FAQ
The questions buyers actually ask.
