TL;DROur verdict on Novproxy, in 5 facts
- Hong Kong-based residential proxy provider advertising a 100M+ IP pool
- Dynamic residential traffic starts at $0.50/GB, billed per GB with traffic that reportedly never expires
- Supports HTTP/SOCKS5, rotating and sticky sessions (1-120 min), and country/state/city/ASN targeting
- Free 500MB trial with no card required lowers evaluation barrier
- Transparency gaps on founding, exact country count, refunds, and payment methods warrant first-hand testing
The verdict
Independent nightly benchmarks since March 2024 — here's where Novproxy lands.
- Low entry price for dynamic residential traffic at $0.50/GB
- Broad product range: dynamic residential, static ISP, unlimited-traffic (bandwidth and port), and short-term per-IP plans
- Both HTTP and SOCKS5 protocols supported
- Rotating and sticky sessions with configurable 1-120 minute session lengths
- Granular targeting advertised down to country, state/province, city, and ASN
- Free 500MB trial with no credit card required
- Developer code samples for C/C++, Go, Node.js, PHP, Java, and Python
- Founding year and corporate ownership not disclosed on the official site
- No published, verifiable count of supported countries (only six flagship locations named)
- Refund policy, accepted payment methods, and cryptocurrency support not clearly stated on public pages
- No dedicated browser extension or standalone proxy-manager application evident
- Support is Telegram- and email-centric, which may not suit enterprise buyers needing formal SLAs
- Performance claims (99% success, <0.5s response) are unverified vendor marketing figures
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 Novproxy?+
What we think after testing Novproxy
Editorial review by Maya Cortez · last tested Jul 9, 2026
Based on published specifications, Novproxy positions itself as a budget-oriented residential proxy provider aimed at users running social media multi-accounting, web scraping, price monitoring, market research, brand protection, e-commerce operations, and AI/LLM data collection. The company's public materials list a Hong Kong business address, and its official site is available in English and Simplified Chinese, suggesting a primary orientation toward users needing overseas (non-China) IP resources. Founding year and detailed corporate ownership are not disclosed on the official site, so those points cannot be independently confirmed here.
The product catalog is the clearest part of Novproxy's offering. According to the official site, the lineup comprises four main commercial products: Dynamic Residential Traffic billed by usage from $0.50/GB; Long-Term Static ISP IPs from $3.00/month sold by quantity and drawn from premium ASN providers for exclusive, always-on use; Unlimited Traffic plans available either by bandwidth (from $38.33/day on dedicated servers with customizable bandwidth) or by port (from $0.30/day per port); and Short-Term Residential IPs billed per IP from $0.028. The dynamic residential entry price of $0.50/GB is the headline figure and is competitive within the residential proxy market, though on published specifications it sits in the mid-to-low range rather than being an outlier.
On network scale, Novproxy advertises a pool of 'over 100 million' IPs and describes 'global country coverage.' The official homepage highlights six flagship locations by name (United States, United Kingdom, Germany, Japan, Korea, and France) but does not publish a precise, verifiable count of supported countries; third-party listings cite figures such as 190 or 195 countries, but because those are not stated on the official site they are treated as unconfirmed here. As always, advertised pool sizes across the industry should be read as vendor claims rather than audited metrics.
Technically, the offering is reasonably complete for the price tier. The site confirms both HTTP and SOCKS5 protocol support and provides integration code samples for C/C++, Go, Node.js, PHP, Java, and Python, which points to a functional proxy API accessed via standard username/password gateway authentication (host:port with sub-account credentials). Rotation is customizable, with session lengths configurable from 1 to 120 minutes, and both rotating and sticky session types are supported across the dynamic and unlimited plans. Targeting is a strong point on paper: the short-term residential product explicitly advertises precise location selection by country, state/province, city, and ASN, while the dynamic residential product advertises country and city positioning. There is no evidence on the official site of a dedicated browser extension or a standalone GUI proxy manager application; the provider instead lists compatibility with third-party anti-detect browsers and integrations.
Novproxy advertises a '99% success rate' and 'response times under 0.5 seconds,' along with a '99.9% high availability' claim in its marketing copy. Consistent with a specifications-only assessment, these vendor-stated performance figures are noted as marketing claims and are not treated as verified benchmarks; no independently measured success rate, latency, or uptime figure is recorded here. Prospective buyers who care about performance should validate these claims against the free trial and their own target sites.
On commercial terms and trust signals, the official site offers a free 500MB trial and states that a credit card is not required to start, which lowers the barrier to evaluation. Support is advertised as 24/7, delivered primarily through Telegram channels and email, with a stated commitment to respond within 24 hours to written inquiries. The site notably warns against 'private payments' and instructs users to pay exclusively through the official website, which is a reasonable anti-fraud posture but also underscores that accepted payment methods, cryptocurrency support, and any refund policy are not clearly enumerated on the public pages reviewed. An affiliate program offering 10% commission is advertised.
Overall, on published specifications Novproxy reads as a competent, aggressively priced residential proxy provider with a sensible product spread and solid targeting and session controls, but with meaningful transparency gaps around corporate background, exact country count, refund terms, and payment options. The Hong Kong registration and Telegram-centric support model may give some enterprise buyers pause, and the absence of published, independently verifiable performance data means the vendor's strong success-rate and latency claims should be tested first-hand before committing budget. For price-sensitive users needing overseas residential IPs for scraping or multi-account work, it is worth a trial; for buyers who require documented SLAs, transparent refunds, and established brand track record, the gaps warrant caution.
IP pool size — ranked
Where Novproxy ranks against the largest networks in the directory. Bars are scaled to 350M.
Bars rank total advertised IP pool size. Novproxy publishes 100M+ IPs (advertised) — see the full breakdown in the specs above.
Pricing
From $0.50/GB. Detailed plan breakdown not yet published.
View plans on Novproxy →Proxy types offered
2 types available. Pricing varies by type and volume.
Residential $0.50/GB
100M+ IPs (advertised) real-home IPs across global countries.
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 Novproxy 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.novproxy.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();
Support & account
How they pick up the phone — and who answers.
Company & resources
Who builds and operates this product.
Key markets covered
Global coverage.
Novproxy vs alternatives
How Novproxy stacks up against the closest providers in our directory. Tap any column header to read that review.
| Metric | Novproxy | Proxyscrape | Proxy Luxe | Proxymania |
|---|---|---|---|---|
| Starting price (entry plan) | $0.50 | $19.00 | $0.80 | — |
| Pool size | 100M+ IPs (advertised) | 120M+ residential IPs (plus ~40,000 datacenter IPs) | Millions of IP addresses (vendor claim) | 15M+ residential IPs (vendor claim) |
| Locations | — | — | — | — |
| Rating | 3.1 / 5 | 3.1 / 5 | 3.1 / 5 | 3.1 / 5 |
| Read review | YOU ARE HERE | View → | View → | View → |
How to get started with Novproxy
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 Novproxy account at https://novproxy.com. Self-serve access is usually available immediately.
-
2
Pick a proxy type and tier
Use the dashboard to choose between Residential / ISP / Static 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 Novproxy's claimed rate before committing to an annual plan.
Stuck? Check Novproxy's documentation or email us.
User reviews
No reader reviews yet — be the first below.
Used Novproxy? Write a review+
FAQ
The questions buyers actually ask.
