TL;DROur verdict on 360Proxy, in 5 facts
- 1Residential-only proxy provider, recently rebranded to Cherry Proxy.
- 2Advertises 80M+ IPs across 190+ countries with city/ZIP/ISP targeting.
- 3Pricing starts around $0.77/GB or $0.04/IP at high volume tiers.
- 4Offers both rotating and static residential, HTTP(S) and SOCKS5.
- 5No free trial and no clear refund policy; support is email-only.
The verdict
Benchmark data and published specifications — here's where 360Proxy lands.
- Very low entry pricing - from ~$0.77/GB or as low as $0.04/IP at volume
- Large advertised pool of 80M+ residential IPs across 190+ countries
- Granular targeting by country, state, city, ZIP code and ISP
- Both rotating and static residential, with HTTP(S) and SOCKS5 plus IPv4/IPv6
- Purchased rotating IPs reportedly do not expire, good for intermittent use
- API access, IP whitelisting and a desktop dashboard with port forwarding
- Anti-detect browser compatibility for multi-account workflows
- No free trial - you must pay to evaluate the service
- No clear published refund/money-back policy; refunds handled case-by-case
- Support is email-based with no live chat or phone option
- Residential-only catalog - no datacenter, ISP, mobile or scraping API products
- Limited corporate transparency (no clear founding date or HQ disclosed)
- Mixed third-party reputation signals; verify on a small package first
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 360Proxy?+
What we think after testing 360Proxy
Editorial review by Maya Cortez · last updated Jul 16, 2026
360Proxy is a residential-proxy specialist that has built its reputation almost entirely on low prices. The company markets a pool the official site advertises at over 80 million residential IP addresses spread across 190+ countries, with rotating and static residential products as the core offering. In recent months the brand has been rebranding to "Cherry Proxy," but multiple independent reviews confirm the infrastructure, pricing and feature set are the same service under a new name. We were unable to load the live homepage during research (the site refused automated connections), so the figures below are drawn from 360Proxy's published specifications as echoed consistently across several independent reviews rather than from any first-hand testing on our part.
The product line is narrower than the bigger names in the space. 360Proxy is fundamentally a residential proxy house: it sells rotating residential proxies and static residential proxies, and the published specs do not list datacenter, dedicated ISP, mobile/4G, or a managed scraping/unblocker API. Both HTTP(S) and SOCKS5 are supported, and the network offers IPv4 and IPv6. Targeting is a genuine strength on paper, with filtering by country, state, city, ZIP code and ISP for rotating residential, which is granular enough for ad verification, localized price checks and market research. Sticky sessions and rotating sessions are both available, and access is via username/password authentication or IP whitelisting through a desktop dashboard app that also handles port forwarding.
Pricing is where 360Proxy aims to win. According to the figures reproduced across reviews, rotating residential starts at roughly $0.77 per GB, and the provider also sells proxies on a per-IP basis as low as $0.04 per IP at the highest-volume tiers (large IP packages such as 7,500 or 20,000 IPs). Static residential is sold per IP per day, with figures around $0.17/IP/day on a 30-day package and higher on shorter 7-day packages. A notable wrinkle the company promotes is that purchased rotating IPs reportedly do not expire, which is unusual and appealing for users with intermittent workloads. Small entry packages (for example a few hundred IPs, or 5-10 GB bandwidth bundles) land in the roughly $28-$150 range depending on configuration. These are vendor-published numbers and volume-tiered, so the effective rate depends heavily on commitment size.
Feature-wise, 360Proxy covers the basics competently: API access for integration, multi-port forwarding, anti-detect browser compatibility, and granular geo-targeting. Crypto payment is mentioned as accepted by at least one independent review, though this is not consistently confirmed across sources, so treat it as probable rather than certain. The provider operates a referral/partner program with discounts for new users.
The caveats are real and worth weighing. First, there is no free trial - users have to pay to evaluate the service - and the refund picture is weak: independent reviews describe no clear money-back guarantee, with refunds handled case-by-case as a support dispute rather than a published policy. Second, support is thin: it is largely email-based with no live chat or phone option, though the company advertises 1-to-1 account assistance. Third, reputation signals are mixed; the provider has favorable testimonials and a respectable Trustpilot showing in some reviews, but aggregate ratings elsewhere (for example Knoji) are middling, so buyers should test on a small package before committing budget. Fourth, the company is relatively opaque about corporate details - no clear founding date or HQ is published - which is common among budget proxy vendors but still a transparency gap. Finally, because the catalog is residential-only, teams that also need datacenter, ISP or mobile proxies, or a hosted scraping API, will need a second vendor.
Who is it for? 360Proxy (Cherry Proxy) suits cost-sensitive individuals and small teams doing social-media account management, survey work, sneaker/retail monitoring, localized SEO and market-research scraping who want large geographic coverage at the lowest possible per-GB or per-IP cost, and who don't need datacenter or mobile proxies or enterprise-grade SLAs. It is less suited to enterprises that require audited compliance documentation, a trial period, a guaranteed refund window, or 24/7 live support. On published specs it is a credible budget residential option; just validate performance on a minimal package first, since we have not lab-tested the network and the no-trial, weak-refund posture means the first purchase carries the evaluation risk.
Review 360Proxy and setup proxy on Hidemyaccc
Watch our hands-on walkthrough of 360Proxy — 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 360Proxy scores across the five dimensions our reviewers weigh — pricing, performance, pool quality, support and ethics.
IP pool size — ranked
Where 360Proxy ranks against the largest networks in the directory. Bars are scaled to 350M.
Bars rank total advertised IP pool size. 360Proxy 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 360Proxy →Proxy types offered
One core type. Pricing varies by type and volume.
Residential $0.77/GB
80M+ residential IPs real-home IPs across 190 countries.
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 360Proxy 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.360proxy.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.
Support & account
How they pick up the phone — and who answers.
Company & resources
Who builds and operates this product.
Key markets covered
190+ countries served.
360Proxy vs alternatives
How 360Proxy stacks up against the closest providers in our directory. Tap any column header to read that review.
| Metric | 360Proxy | 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 | 190+ 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 360Proxy
A 5-minute walkthrough from sign-up to your first successful request. Total setup time: ~10 minutes.
-
1
Sign up + verify your account
Create a 360Proxy account at https://www.360proxy.com. Self-serve access is usually available immediately.
-
2
Pick a proxy type and tier
Use the dashboard to choose between Residential. Start with the smallest plan to validate your workload before scaling.
-
3
Generate auth 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
Configure rotation + sticky sessions
Decide between rotating-on-every-request (best for SERP scraping) or sticky sessions (best for account-based workflows).
-
5
Test with a real workload
Run 100-500 test requests against your real target before paying for volume. Compare success rate to 360Proxy's claimed rate before committing to an annual plan.
Stuck? Check 360Proxy's documentation or email us.
User reviews
No reader reviews yet — be the first below.
Used 360Proxy? Write a review+
FAQ
The questions buyers actually ask.
