TL;DROur verdict on Cherry Proxy, in 5 facts
- 1Residential/ISP-focused budget provider, formerly branded 360Proxy.
- 2Advertises 80M+ residential IPs across 195+ countries, from roughly $0.77/GB.
- 3Offers rotating residential, static/ISP, unlimited-bandwidth, and SOCKS5 products.
- 4City/ZIP/ISP targeting, sticky sessions, API access, and a no-credit-card free trial.
- 5Weak on transparency and has mixed reviews on geo-accuracy — test before scaling.
The verdict
Benchmark data and published specifications — here's where Cherry Proxy lands.
- Low entry pricing, with residential bandwidth advertised from around $0.77/GB
- Large advertised pool of 80M+ residential IPs across 195+ countries and regions
- Flexible billing: pay-per-GB, per-IP/day static, and an unlimited-bandwidth time-based plan
- Geo-targeting down to country, city, ZIP and ISP level (per the vendor)
- HTTP/HTTPS/SOCKS5 support with both username/password and IP-whitelist auth
- Free trial advertised without requiring a credit card
- API access, sticky sessions, and unlimited concurrent connections on residential plans
- Minimal corporate transparency: no public founding date, ownership, or HQ disclosed
- Operates under a recent rebrand from 360Proxy, so limited track record under the current name
- Performance figures (99.9% uptime, 0.7s response, 99% IP purity) are vendor-published and unverified
- Mixed third-party reviews, including reports of city/ASN geo-targeting inaccuracy and slow support
- No standalone datacenter pool, dedicated mobile network, or managed scraper/SERP/unblocker API found
- Pricing and promo figures vary across sources; no clearly stated refund/money-back window found
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 →
Who should not use Cherry Proxy?+
What we think after testing Cherry Proxy
Editorial review by Maya Cortez · last updated Jul 16, 2026
Cherry Proxy is a residential-focused proxy provider that, according to its own marketing, operates the network previously branded as 360Proxy. It positions itself as a low-cost alternative to the enterprise proxy giants, advertising a pool of 80 million-plus residential IP addresses spread across 195+ countries and regions. The pitch is straightforward: high-purity residential IPs sourced from real household devices and ISPs, sold on flexible bandwidth or per-IP pricing, with a beginner-friendly dashboard. It is aimed at web scrapers, e-commerce price and ad monitors, social-media account managers, SEO professionals, and small-to-mid teams that want residential-grade IPs without an enterprise contract.
The product lineup is broader than a single proxy type. Based on the official site and corroborating listings, Cherry Proxy markets rotating residential proxies (billed per GB), an unlimited-bandwidth residential plan billed by time, static residential / dynamic ISP proxies, and a SOCKS5 product. That covers Residential, ISP and SOCKS5 use cases. There is no evidence of a standalone datacenter pool, a dedicated mobile (4G/5G) network, or a managed scraping/SERP/unblocker API of the kind sold by larger vendors, so prospective buyers should treat this as a residential/ISP house rather than an all-in-one data-collection platform. All proxies support HTTP, HTTPS and SOCKS5, with both username/password and IP-whitelist authentication.
On pricing, the entry point most consistently cited across the site and review aggregators is around $0.77/GB for residential bandwidth, with new-user promotional rates advertised near $0.78/GB on a first small plan and some listings showing standard residential as high as $1.2/GB. Static/ISP IPs are sold per-IP-per-day (roughly $0.17/IP/day in cited listings), and an unlimited residential plan is offered as a fixed time-based fee. Exact figures drift between sources and promotions, so the official pricing page is the only authoritative reference. A free trial is advertised, reportedly without requiring a credit card; we did not find a clearly stated money-back/refund window, so that should be confirmed before purchase.
Feature-wise, the advertised set is competitive for a budget provider: API access with documentation for custom rotation timing, automatic and manual IP rotation (cited as cycling every few minutes), sticky sessions, unlimited concurrent connections on residential plans, and geo-targeting down to country, city, ZIP and ISP. Support is listed across email, live chat, Discord and WhatsApp, and there is an affiliate program paying up to roughly 10% commission. The vendor publishes performance claims of a 0.7-second average response time and 99.9% uptime; we report these strictly as vendor-published figures and have not lab-tested them.
The caveats are meaningful and worth stating plainly. First, transparency is thin: we found no public founding date, company registration, ownership, or HQ disclosure, and the 360Proxy rebrand means the track record is short under the current name. Second, the benchmark and pool-purity numbers (80M+ IPs, 99% purity, 99.9% uptime, sub-second response) are vendor-stated and not independently verified here. Third, third-party sentiment is genuinely mixed: alongside positive Trustpilot and G2 notes about speed, value and support, there are negative reports of geo-targeting inaccuracy (an ASN/city request returning an IP that geolocated to a different state), connection issues with anti-detect browsers, and slow or unresponsive support after purchase on certain unlimited plans. That kind of city/ASN mismatch matters a lot for survey, ad-verification and localized-scraping work, so it should be validated on the free trial before committing budget. Fourth, much of the favorable coverage online is affiliate or promotional, so headline claims deserve skepticism.
Who should consider it: cost-sensitive scrapers, account managers and researchers who need large residential coverage and city/ISP targeting at a low per-GB price, and who are willing to test geo-accuracy themselves first. Who should look elsewhere: buyers who need a managed scraper/SERP/unblocker API, a true mobile network, verified compliance and sourcing documentation, or the audited reliability of established vendors like Bright Data, Oxylabs or NetNut.
CherryProxy Review - 2025 | 80 Million Real IPs: Bypass Geo-Restrictions With High-Speed Data
Watch our hands-on walkthrough of Cherry Proxy — dashboard, API, real workload, the bits the marketing pages skip.
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 Cherry Proxy scores across the five dimensions our reviewers weigh — pricing, performance, pool quality, support and ethics.
IP pool size — ranked
Where Cherry Proxy ranks against the largest networks in the directory. Bars are scaled to 350M.
Bars rank total advertised IP pool size. Cherry Proxy publishes 80M+ residential IPs — see the full breakdown in the specs above.
Pricing
From $0.77/GB. Detailed plan breakdown not yet published.
View plans on Cherry Proxy →Proxy types offered
2 types available. Pricing varies by type and volume.
Residential $0.77/GB
80M+ residential IPs real-home IPs across 195 countries.
ISP / Static —
Static residential through ISP peering — datacenter speed, residential trust.
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 Cherry Proxy 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.cherryproxy.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.
Cherry Proxy vs alternatives
How Cherry Proxy stacks up against the closest providers in our directory. Tap any column header to read that review.
| Metric | Cherry Proxy | Shifter | Storm Proxies | PapaProxy |
|---|---|---|---|---|
| Starting price (entry plan) | $0.77 | $99.98 | $14.00 | $19.00 |
| Pool size | 80M+ residential IPs | 205M+ advertised (~235K independently sampled) | 700K+ IPs | 100,000+ IPv4 addresses |
| Locations | 195+ countries | — | — | — |
| Rating | 3.8 / 5 | 3.8 / 5 | 3.8 / 5 | 3.8 / 5 |
| Read review | YOU ARE HERE | View → | View → | View → |
How to get started with Cherry Proxy
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 Cherry Proxy account at https://www.cherryproxy.com. Self-serve access is usually available immediately.
-
2
Choose your proxy mix
Use the dashboard to choose between Residential / 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 Cherry Proxy's claimed rate before committing to an annual plan.
Stuck? Check Cherry Proxy's documentation or email us.
User reviews
No reader reviews yet — be the first below.
Used Cherry Proxy? Write a review+
FAQ
The questions buyers actually ask.