Datacenter proxies · dedicated private IPs
Dedicated datacenter IPs built for raw speed, priced for volume.
Private IPs on datacenter uplinks in 60+ locations across 37 countries, never shared, with 100 GB of traffic per IP each month pooled across your order. From $0.70 per IP per month in North America on a 90-day term; other regions are priced by group.
- 60+locationsCities across 37 countries on wired uplinks
- 100 GBper IP / moPooled across every IP in the order
- $0.70per IP / moUnited States and Canada, 90-day term; other regions priced by group
- 0rate limitsUnlimited threads and sessions on every IP
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.
Dedicated IPs, never shared
Every address in your order is yours alone for the term. Reputation, rate limits and blocks are only ever about your own traffic.
Datacenter speed and stability
Wired uplinks in carrier-grade facilities: the fastest network we sell, with the most predictable latency.
Pooled traffic across the order
100 GB per IP each month, summed across all your IPs. Ten IPs share a terabyte; nothing is lost if one IP works harder than another.
Country, state and city selection
Choose the location of each IP at checkout from 60+ cities, and mix locations freely inside one order.
Unlimited threads, zero rate limits
No cap on concurrent connections or requests. HTTP(S) and SOCKS5 with username-password or IP-whitelist authentication.
Lists, usage and top-ups by API
Download endpoints, watch pooled usage in real time and add traffic or IPs from the dashboard or the REST API.
02 — How it works
Choose locations and count, get your list, add capacity when you need it.
Datacenter proxies are the simplest network to run: fixed addresses, one traffic pool, no rotation logic to manage.
-
01
Pick locations, quantity and term
From one IP to thousands, in any mix of cities. Orders of 10, 50 and 100 IPs are discounted automatically.
-
02
Receive your endpoints
Your IPs are provisioned within minutes and listed as ip:port:user:pass and JSON, ready for any client.
-
03
Spend from one traffic pool
Usage is counted against the order's monthly pool. Approaching the limit? Add traffic or IPs from the dashboard; the pool resets on each monthly cycle.
03 — Pricing
Per IP, per term, per location, traffic pooled. The cheapest way to move volume.
Each IP brings 100 GB a month into the order's pool. North America is the reference rate, Europe and the rest of the world follow at published multiples. Longer terms cost less per month, and orders of 10, 50 and 100 IPs take a further 5, 10 and 15 % off.
Per dedicated IPby term and location
Reference rate (United States & Canada).
United States
Canada
United Kingdom
Ireland
France
Germany
Netherlands
Belgium
Spain
Portugal
Italy
Switzerland
Austria
Poland
Czechia
Sweden
Norway
Finland
Denmark
Romania
Bulgaria
Türkiye
Mexico
Brazil
Argentina
Chile
Israel
United Arab Emirates
India
Singapore
Japan
South Korea
Hong Kong
Taiwan
Australia
New Zealand
South Africa
| Term | Per IP / month | Per IP, total | vs 30 days |
|---|---|---|---|
| 30 days | $0.80 | $0.80 | — |
| 60 days | $0.76 | $1.52 | −5% |
| 90 days Popular | $0.70 | $2.10 | −13% |
When a pool is exhausted, speed is reduced until the next monthly cycle or until traffic is added. 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.10 − 20% = $168, or $0.56 per IP per month.
04 — Locations
60+ locations across 37 countries.
Facilities on major internet exchanges, so your requests reach the target with the shortest possible path. Pick the city at checkout.
United StatesUS
CanadaCA
MexicoMX
BrazilBR
ArgentinaAR
ChileCL
United KingdomGB
IrelandIE
FranceFR
GermanyDE
NetherlandsNL
BelgiumBE
SpainES
PortugalPT
ItalyIT
SwitzerlandCH
AustriaAT
PolandPL
CzechiaCZ
SwedenSE
NorwayNO
FinlandFI
DenmarkDK
RomaniaRO
BulgariaBG
TürkiyeTR
IsraelIL
United Arab EmiratesAE
IndiaIN
SingaporeSG
JapanJP
South KoreaKR
Hong KongHK
TaiwanTW
AustraliaAU
New ZealandNZ
South AfricaZA
Need a household footprint instead of speed? Residential proxies cover 195 countries at the same per-GB rate. 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 datacenter 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.
Clean, owned address space
Ranges announced from carrier-grade facilities under our providers' own ASNs, monitored for blacklist hits before they reach your order.
Dedicated means dedicated
An IP in your order is not shared, rotated or resold during your term.
Public pricing, per location
Terms, location groups, discounts and the traffic policy are all on this page. Nothing is hidden behind a sales call.
Fair use, enforced
No attacks, fraud, spam or anything illegal where you or the target operate. Abuse ends the rental.
09 — Questions
Straight answers about datacenter proxies.
What is a datacenter proxy?
A datacenter proxy is an IP address hosted in a commercial facility rather than assigned by a consumer ISP. It is the fastest and cheapest proxy type, ideal when the target does not block hosting ranges or when you control both ends.
How does the pooled traffic work?
Every IP in an order adds 100 GB to that order's monthly pool. Usage from any IP draws from the pool, so ten IPs share 1000 GB regardless of which one does the work. The pool resets each monthly cycle.
What happens when the pool runs out?
Speed is reduced until the next cycle so your jobs keep running, or you can add traffic or more IPs from the dashboard at any time.
Are the IPs shared with other customers?
No. Datacenter proxies are dedicated: the addresses in your order belong to you alone for the term.
Will datacenter IPs work on protected sites?
Often not. Targets that score visitors tend to flag hosting ranges. For those, residential or mobile proxies are the right tool; datacenter IPs shine on volume where trust requirements are low.
Can I choose the city?
Yes. Country, state and city are chosen per IP at checkout from 60+ locations, and one order can mix as many as you like.
Why do prices differ by location?
Bandwidth and colocation cost more in some regions than others. North America is the reference rate; Europe, then Asia-Pacific, the Middle East, Latin America and Africa are priced as groups at published multiples, 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 a location first?
Yes. Order a single IP on a 30-day term from $0.80 in North America, run your workload and scale the order once it behaves the way you need.
Ready when you are
Put dedicated IPs behind your next job.
Create your account, fund the wallet in the coin of your choice and choose your locations. Your endpoints are ready within minutes.