TL;DROur verdict on Proxyjet, in 5 facts
- 1US-registered (Pittsburgh, PA) provider offering rotating residential, ISP, mobile, and datacenter proxies
- 2Advertised pool of 75M+ residential IPs across 180 locations
- 3Entry pricing from $0.55/GB residential and $0.25/GB datacenter, with 365-day GB validity
- 4Pay-for-success billing, crypto payments, city/state targeting, HTTP/SOCKS5 support
- 5Vendor-published 99.9% success rate, 99.9% uptime and 0.3s response time are unverified marketing claims
The verdict
Benchmark data and published specifications — here's where Proxyjet lands.
- Low entry pricing across all four proxy types (rotating residential from $0.55/GB, datacenter from $0.25/GB)
- 365-day traffic validity instead of the usual monthly expiry, ideal for bursty or seasonal workloads
- Pay-only-for-successful-requests billing model advertised
- Four proxy types in one platform: rotating residential, static residential (ISP), mobile, and datacenter
- City- and state-level geo-targeting plus HTTP and SOCKS5 protocol support
- Crypto payments supported via self-serve crypto-pay, with fast self-serve activation
- Strong third-party review sentiment on G2 and Trustpilot for support and onboarding speed
- Mid-tier 75M+ pool is smaller than mega-pool incumbents like Bright Data or Oxylabs
- 180 'IP locations' is not the same as 180 countries; deep regional coverage should be verified
- No clearly published refund window or free trial (suggests buying 1GB to test); plans auto-renew unless you opt out
- API details and SDK/integration docs are not prominently documented on product pages
- No published browser extension and no clearly documented ASN-level targeting
- Reviewers note the dashboard's analytics/usage reporting is limited and early docs can feel technical
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 Proxyjet?+
What we think after testing Proxyjet
Editorial review by Maya Cortez · last updated Jul 16, 2026
ProxyJet is a US-registered proxy provider (its site lists a Pittsburgh, Pennsylvania address) that sells a fairly standard four-product lineup: rotating residential, static residential (ISP), mobile, and datacenter proxies. On its published specifications the headline figure is a pool of "75M+ residential proxies" spread across what the company describes as 180 IP locations. That positions ProxyJet as a mid-tier challenger rather than one of the mega-pool incumbents such as Bright Data or Oxylabs, but the network is large enough to cover the mainstream scraping, ad-verification, SEO-monitoring, and account-management use cases the site targets.
Pricing is bandwidth-based and competitive at the entry level. According to the homepage and product pages, rotating residential traffic starts at $0.55/GB, static residential (ISP) from $0.75/GB, mobile from $1.5/GB, and datacenter from $0.25/GB. The most distinctive commercial feature is traffic validity: instead of the monthly expiry most residential providers impose, ProxyJet advertises "365-Day GBs Validity," meaning purchased gigabytes remain usable for a full year. That is genuinely useful for buyers with bursty or seasonal workloads who would otherwise forfeit unused data each month. The company also advertises a pay-only-for-success billing model ("No Charge for Failed Requests"), self-serve plans scaling from small bundles up to 1TB, and larger Venture/Business/Corporate enterprise tiers from 5TB to 100TB that require contacting sales. Third-party listings have summarized monthly spend as roughly $3 at the low end up to several thousand dollars for enterprise volumes; treat those as indicative rather than exact.
On features, the published material points to credible self-serve infrastructure. ProxyJet supports both HTTP and SOCKS5 protocols, offers rotating and static session options, and advertises city- and state-level targeting on top of country selection. Crypto payment is supported through a self-serve crypto-pay option, and the company emphasizes fast activation (it claims proxies can be live in under 20 seconds) via a self-serve dashboard. The site quotes a number of vendor-published performance figures, including a 99.9% success rate, 99.9% uptime, and an average 0.3-second response time. These are marketing claims from the provider itself, not independently lab-verified numbers, and should be read that way. We have not benchmarked ProxyJet, so no independent performance data is asserted here.
Who is it for? ProxyJet fits individuals and small-to-mid-size teams who want flexible, no-monthly-expiry bandwidth across the four main proxy types at an aggressive entry price, with crypto payment and city/state targeting available. The 365-day validity and "only pay for successful requests" model are the two strongest reasons to consider it over a generic alternative. The provider also maintains a presence on review platforms: G2 lists a high aggregate rating across a large number of reviews, and reviewers there and on Trustpilot repeatedly praise fast onboarding, responsive support, and stable connections for automation and scraping.
There are real caveats. The pool size (75M+) is mid-pack and the 180 "IP locations" figure is not the same as 180 distinct countries, so buyers needing deep coverage in specific hard-to-reach regions should verify availability before committing. We could not confirm an explicit money-back/refund window or a free trial; the site instead suggests buying a single 1GB bundle to test, and plans auto-renew (on completion or annually) unless you opt out, which is worth watching. We found no published browser extension and no clearly documented ASN-level targeting, and the product pages do not prominently detail the API, so developers should confirm endpoint and integration specifics directly. User reviews also flag that the dashboard's analytics and usage-reporting could be more granular, that first-time documentation can feel technical, and at least one Trustpilot reviewer disputed a data-consumption billing charge that was only resolved in stages. As with any provider that publishes its own success-rate and uptime numbers, those figures are vendor claims rather than verified benchmarks.
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 Proxyjet scores across the five dimensions our reviewers weigh — pricing, performance, pool quality, support and ethics.
IP pool size — ranked
Where Proxyjet ranks against the largest networks in the directory. Bars are scaled to 350M.
Bars rank total advertised IP pool size. Proxyjet publishes 75M+ residential IPs — see the full breakdown in the specs above.
Pricing
From $0.55/GB. Detailed plan breakdown not yet published.
View plans on Proxyjet →Proxy types offered
4 types available. Pricing varies by type and volume.
Residential $0.55/GB
75M+ residential IPs real-home IPs across 180 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 Proxyjet 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.proxyjet.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
180+ countries served.
Proxyjet vs alternatives
How Proxyjet stacks up against the closest providers in our directory. Tap any column header to read that review.
| Metric | Proxyjet | Proxy.market | Proxyma | Buyproxies |
|---|---|---|---|---|
| Starting price (entry plan) | $0.55 | $0.49 | $5.00 | $0.83 |
| Pool size | 75M+ residential IPs | 22M+ residential IPs (plus 500K+ ISP, ~5M mobile, ~1.5M rotating datacenter) | 60M+ residential IPs (vendor-claimed) | 500K+ IPs |
| Locations | 180+ countries | — | — | — |
| Rating | 3.6 / 5 | 3.6 / 5 | 3.6 / 5 | 3.6 / 5 |
| Read review | YOU ARE HERE | View → | View → | View → |
How to get started with Proxyjet
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 Proxyjet account at https://proxyjet.io. Self-serve access is usually available immediately.
-
2
Select the right plan for your workload
Use the dashboard to choose between Residential / Datacenter / ISP. 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 Proxyjet's claimed rate before committing to an annual plan.
Stuck? Check Proxyjet's documentation or email us.
User reviews
No reader reviews yet — be the first below.
Used Proxyjet? Write a review+
FAQ
The questions buyers actually ask.