ISP proxies · dedicated static IPs
Static residential IPs with datacenter speed, yours for the whole term.
Addresses registered to consumer ISPs, hosted on wired datacenter uplinks and assigned to you alone. Unlimited traffic, the same IP for as long as you rent it, in 33 countries. From $0.99 per IP per month in the United States on a 90-day term; other regions are priced by group.
- 33countriesConsumer-ISP address space, hosted in datacenters
- ∞trafficNo per-GB metering, no throttling, no caps
- $0.99per IP / moUnited States, 90-day term; other regions priced by group
- 24 htest termTry a location for a day before you commit
01 — What you get
Everything included, from the first IP to the thousandth.
Both protocols, both authentication methods, the dashboard and the API come with every order. Volume and term only change the price.
Residential trust, datacenter speed
Each IP is registered to a consumer ISP, so it scores like a home connection, while the traffic rides on a wired datacenter uplink with no household bottleneck.
Dedicated, never shared
The addresses in your list belong to you for the whole term. No other customer touches them, so their reputation is only what you make of it.
Unlimited traffic
Nothing is metered. Stream, download, keep long-lived sessions open; the price per IP is the whole bill.
Keep the IP for weeks or months
Rent for 24 hours, 30, 60 or 90 days and renew before the end to keep the same addresses. Accounts stay tied to a stable IP.
Two protocols, two auth methods
HTTP(S) and SOCKS5 on every IP, with username-password or IP-whitelist authentication. Unlimited concurrent connections.
Lists from the dashboard or the API
Download your endpoints as ip:port:user:pass or JSON, check each IP's status and renew from the same screen.
02 — How it works
Pick locations, receive your list, keep it as long as you need.
ISP proxies are a rental, not a pool. You choose exactly what you get and it stays yours until the term ends.
-
01
Choose country, quantity and term
Any mix of countries, from a single IP to hundreds. Orders of 10, 50 and 100 IPs are discounted automatically.
-
02
Receive your static list
Your IPs appear in the dashboard within minutes of the order, as ip:port:user:pass lines and as an API resource.
-
03
Renew, extend or swap
Renew before the term ends to keep the same addresses. If an IP becomes unreachable for more than 24 hours, it is replaced for the remainder of the term.
03 — Pricing
Per IP, per term, per location. Longer terms and larger orders cost less.
Dedicated IPs are priced by where they are: the United States is the reference, other regions are grouped and priced as a multiple of it, shown before you buy. Traffic is unlimited everywhere and discounts stack with the term.
Per dedicated IPby term and location
Reference rate (United States).
United States
Canada
United Kingdom
Germany
France
Netherlands
Belgium
Ireland
Austria
Switzerland
Spain
Italy
Poland
Sweden
Denmark
Norway
Finland
Czechia
Portugal
Romania
Lithuania
Latvia
Greece
Hungary
Slovakia
Croatia
Türkiye
Australia
New Zealand
Japan
Singapore
Hong Kong
Brazil
| Term | Per IP / month | Per IP, total | vs 30 days |
|---|---|---|---|
| 24 hours | — | $0.75 | — |
| 30 days | $1.12 | $1.12 | — |
| 60 days | $1.06 | $2.12 | −5% |
| 90 days Popular | $0.99 | $2.97 | −12% |
The 24-hour term is meant for testing a location before committing. Paid from your wallet balance; minimum top-up $10.
Volume discountper order, on top of the term
- 1–9IPslist price
- 10+IPs−5%
- 50+IPs−10%
- 100+IPs−20%
- 500+IPs−25%
Example
100 IPs for 90 days in the selected location: 100 × $2.97 − 20% = $237.60, or $0.79 per IP per month.
04 — Locations
33 countries with static residential address space.
ISP proxies exist where consumer providers lease address blocks to datacenters, which is why the list is shorter than the residential one. City selection is available where the pool allows it.
United StatesUS
CanadaCA
United KingdomGB
GermanyDE
FranceFR
NetherlandsNL
SpainES
ItalyIT
PolandPL
AustriaAT
BelgiumBE
SwitzerlandCH
IrelandIE
SwedenSE
DenmarkDK
NorwayNO
FinlandFI
CzechiaCZ
PortugalPT
RomaniaRO
LithuaniaLT
LatviaLV
GreeceGR
HungaryHU
SlovakiaSK
CroatiaHR
TürkiyeTR
AustraliaAU
New ZealandNZ
JapanJP
SingaporeSG
Hong KongHK
BrazilBR
Need a country that is not listed? Residential proxies cover all 195 countries with sticky sessions up to 24 hours. All locations
05 — Use cases
What this network is for.
The jobs where this proxy type is the right default, and why. When the target changes, the other three networks are one click away in the same account.
06 — Choose the right network
How it compares with the other three.
Four networks, one wallet. Switch whenever the job calls for another footprint, without renegotiating anything.
| Criterion | Residential | ISP | Datacenter | Mobile |
|---|---|---|---|---|
| Detection resistance | High: real household devices | High: ISP-registered, static | Low: known datacenter ranges | Highest: shared carrier IPs |
| Speed and stability | Good, varies with the household line | Excellent, wired datacenter uplink | Excellent | Good, varies with the cell |
| IP behaviour | Rotating, or sticky up to 24 h | Yours for the whole term | Yours for the whole term | Rotating per GB, or dedicated device |
| Billing | Per GB, never expires | Per IP per term, unlimited traffic | Per IP per term, 100 GB/mo pooled | Per GB, or per device per term |
| Best for | Scraping, SERP, ads, monitoring | Accounts, checkout, logins | Bulk, low-sensitivity workloads | The most protected targets |
| From | $2.45 /GB | $0.99 /IP/mo (US) | $0.70 /IP/mo (US) | $2.62 /GB |
07 — Integration
Works with anything that speaks proxy.
Each ISP proxy is its own ip:port. 203.0.113.42 stands in for one of yours; SOCKS5 answers on port 8001 of the same address.
- Username-password or IP-whitelist authentication
- HTTPS targets pass through untouched, end to end
- Endpoint lists as text or JSON, from the dashboard or the REST API
- Works in scrapers, browsers, headless Chrome and anti-detect profiles
curl -x http://USER:[email protected]:8000 \
https://api.ipify.org
import requests
proxy = "http://USER:[email protected]:8000"
r = requests.get("https://api.ipify.org",
proxies={"http": proxy, "https": proxy}, timeout=30)
print(r.text)
import { fetch, ProxyAgent } from "undici";
const dispatcher = new ProxyAgent("http://USER:[email protected]:8000");
const res = await fetch("https://api.ipify.org", { dispatcher });
console.log(await res.text());
$ch = curl_init("https://api.ipify.org");
curl_setopt_array($ch, [
CURLOPT_PROXY => "http://203.0.113.42:8000",
CURLOPT_PROXYUSERPWD => "USER:PASS",
CURLOPT_RETURNTRANSFER => true,
]);
echo curl_exec($ch);
proxyURL, _ := url.Parse("http://USER:[email protected]:8000")
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyURL)}}
resp, err := client.Get("https://api.ipify.org")
08 — Trust
The rules we run this network on.
Where the addresses come from, what dedicated means, what you pay and what we refuse. In writing, on the page you buy from.
Legitimately sourced address space
ISP proxies use address blocks that consumer providers lease to datacenters under contract, not hijacked or squatted ranges.
Dedicated means dedicated
An IP in your list is not resold, rotated into a pool or shared with another customer during your term.
Public pricing, per location
Every term, every location group and every discount is on this page. No traffic meter, no renewal surprise.
Fair use, enforced
No attacks, fraud, unauthorized access or anything illegal where you or the target operate. Abuse ends the rental.
09 — Questions
Straight answers about ISP proxies.
What is an ISP proxy?
An ISP proxy, also called a static residential proxy, is an IP address registered to a consumer internet provider but hosted on datacenter hardware. Websites classify it as a home connection, while you get the speed and uptime of a wired uplink and an address that never changes during your rental.
How is it different from a residential proxy?
Residential proxies route through real household devices and rotate through a pool; you pay per GB and can hold an IP for up to 24 hours. ISP proxies are fixed addresses assigned to you alone for 24 hours to 90 days, with unlimited traffic. Choose residential for breadth and rotation, ISP for stability and volume.
Is traffic really unlimited?
Yes. Nothing is metered on ISP proxies and there is no throttling threshold. You pay per IP for the term; what you send through it is up to you, within the acceptable use policy.
Can I keep the same IP after the term ends?
Renew before the term expires and the same addresses stay in your list. An IP that expires without renewal returns to inventory and cannot be guaranteed afterwards.
What happens if an IP stops working?
Report it from the dashboard. If the address stays unreachable for more than 24 hours, it is replaced for the remainder of your term at no charge.
Can I choose the city?
Country selection is available everywhere; city selection where the pool in that country allows it, shown at checkout. For city-level precision in every country, residential proxies are the better fit.
Why do prices differ by country?
Because the address space does. ISP-registered blocks are abundant in the United States and scarcer elsewhere, so each region is priced as a group: the United States is the reference, Canada and Western Europe, the rest of Europe, and Asia-Pacific with Brazil follow at published multiples. The group price is shown before you order.
How are the volume discounts applied?
Automatically, on the whole order: 10 IPs or more take 5 % off, 50 or more 10 %, 100 or more 15 %, on top of the term and location price.
Can I test before ordering in volume?
Yes. The 24-hour term lets you try a location from $0.75 per IP in the United States, a little more in other regions, and the $10 minimum top-up covers several of them.
Ready when you are
Reserve your first static IPs.
Create your account, fund the wallet in the coin of your choice and pick the countries you need. Your list is ready within minutes.