Mobile proxies · 4G / 5G carrier IPs
Mobile proxies on real 4G/5G carriers, rotating or dedicated.
Carrier-assigned addresses shared by thousands of real phones, which is why websites almost never block them. Rotate through the pool per GB at one worldwide rate, or rent a dedicated device with its own IP for 24 hours to 90 days, priced by country. From $2.62 per GB; dedicated devices from $31.05 a month.
- 100+countriesCarrier networks selectable at checkout
- 4G/5GnetworksReal devices on real carriers, CGNAT shared IPs
- $2.62per GBRotating, same rate worldwide; dedicated devices from $31.05 a month, by country
- 2modesRotating pool per GB, or a dedicated device per term
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.
The highest trust score there is
Carriers put thousands of phones behind each address, so blocking a mobile IP means blocking real customers. Websites almost never do.
Rotating pool, billed per GB
Use the mobile gateway like the residential one: a new carrier IP on every request, or sticky with a session ID, in the country and carrier you choose.
Dedicated device, your own IP
Rent a real modem for 24 hours to 90 days. Unlimited traffic, and you decide when the IP changes: on demand through a link, or on a timer.
Country and carrier selection
Pick the country and, where available, the operator, so the IP belongs to the network your audience actually uses.
Two protocols, unlimited threads
HTTP(S) and SOCKS5 on both modes, with username-password or IP-whitelist authentication and no concurrency cap.
Rotation and usage by API
Trigger a rotation, read the current IP or pull usage per device from the dashboard or the REST API.
02 — Two ways to use it
Rotate through the carrier pool, or own a device outright.
Both modes sit on the same carriers. Pick per job: volume and breadth on the pool, control and consistency on a dedicated device.
-
01
Rotating: mob.proxshift.com
Same syntax as residential, on port 9000 and 9001. Add -cc- for the country and -sid- to hold an IP. You pay for the GB you consume and the traffic never expires.
-
02
Dedicated: one modem, one IP
A physical 4G/5G device in the country and carrier you chose. Its IP is yours alone; rotate it whenever you want with a link, or every N minutes on a timer.
-
03
Terms from 24 hours to 90 days
Test a carrier for a day, or lock in 60 or 90 days for the lowest monthly rate. Renew to keep the same device.
03 — Pricing
Per GB on the pool, per device and per country on dedicated.
Rotating traffic follows a four-tier ladder, costs the same in every country and never expires. Dedicated devices are billed per term with unlimited traffic, at a rate that depends on the country group; longer terms cost less per month.
Rotating poolper GB · never expires
| Traffic | Per GB | Total |
|---|---|---|
| 2 GB | $2.62 | $5.24 |
| 10 GB | $2.45 | $24.50 |
| 50 GB Popular | $2.10 | $105 |
| 100 GB | $1.92 | $192 |
| 500 GB | $1.58 | $790 |
The rate of the highest tier you reach applies to the whole purchase. Above 100 GB a month, ask for a custom rate from your account.
Dedicated deviceper device · unlimited traffic
Reference rate (United States & Canada).
United States
Canada
United Kingdom
Germany
France
Netherlands
Spain
Italy
Austria
Ireland
Australia
Poland
Romania
Bulgaria
Lithuania
Türkiye
Brazil
South Africa
Malaysia
India
| Term | Per month | Total |
|---|---|---|
| 24 hours | — | $5.90 |
| 30 days | $69 | $69 |
| 60 days Popular | $65.55 | $131.10 |
| 90 days | $62.10 | $186.30 |
The 24-hour dedicated term is meant for testing a carrier. Paid from your wallet balance; minimum top-up $10.
04 — Locations
100+ countries, real carriers.
The most requested countries are below; the full list, with carriers per country, is chosen at checkout. Dedicated devices are available where we operate modems.
United StatesUS
United KingdomGB
GermanyDE
FranceFR
SpainES
ItalyIT
NetherlandsNL
PolandPL
AustriaAT
RomaniaRO
BulgariaBG
IrelandIE
LithuaniaLT
MalaysiaMY
AustraliaAU
BrazilBR
CanadaCA
IndiaIN
TürkiyeTR
South AfricaZA
Carrier availability varies by country and is shown live at checkout. 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.
The rotating gateway is mob.proxshift.com, port 9000 for HTTP(S) and 9001 for SOCKS5, with the same username parameters as residential. Dedicated devices come as their own ip:port.
- 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-cc-us:[email protected]:9000 \
https://api.ipify.org
import requests
proxy = "http://USER-cc-us:[email protected]:9000"
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-cc-us:[email protected]:9000");
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://mob.proxshift.com:9000",
CURLOPT_PROXYUSERPWD => "USER-cc-us:PASS",
CURLOPT_RETURNTRANSFER => true,
]);
echo curl_exec($ch);
proxyURL, _ := url.Parse("http://USER-cc-us:[email protected]:9000")
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.
Real devices, real carriers
No spoofed headers or relabelled datacenter ranges: every mobile IP belongs to a carrier and is used by a physical device.
Dedicated means dedicated
A rented device serves you alone for the term; its IP is not shared with another customer.
Public pricing
Both ladders and the country groups for dedicated devices are on this page. No expiry on the GB you buy.
Fair use, enforced
No attacks, fraud, unauthorized access or anything illegal where you or the target operate. Abuse ends access.
09 — Questions
Straight answers about mobile proxies.
What is a mobile proxy?
A mobile proxy routes your traffic through an IP address assigned by a cellular carrier to a real 4G/5G device. Carriers share each address between thousands of subscribers, so websites treat mobile IPs with far more tolerance than any other kind.
Rotating or dedicated: which should I pick?
Rotating is billed per GB, covers 100+ countries and gives you a new carrier IP on every request or a sticky session: ideal for collection at scale. Dedicated gives you one physical device and its IP for the whole term, with unlimited traffic and rotation on your command: ideal for accounts and anything that must look like one consistent phone.
How does rotation work on a dedicated device?
You control it. Call the rotation link or API endpoint to get a new IP from the same carrier on demand, or set a timer so the device rotates every few minutes automatically.
Can I choose the carrier?
Yes, where more than one carrier is available in a country. The list per country is shown at checkout for both modes.
Does rotating traffic expire?
No. Like residential, mobile GB stay on your balance until you use them, and the tier you reach applies to the whole purchase.
Is traffic unlimited on dedicated devices?
Yes. A dedicated device is billed per term, not per GB, and there is no throttling threshold.
Why are dedicated devices priced by country?
Each dedicated device is a physical modem with an unlimited carrier plan, hosted and maintained in the country you choose, and plans, hardware and hosting cost very different amounts from one country to another. The United States and Canada are the reference; Western Europe and Australia cost about 20 % less, Eastern Europe, Türkiye, Brazil, South Africa and Asia about half. The exact price for your zone is shown before you order. Rotating traffic, by contrast, costs the same everywhere.
Are mobile proxies slower?
They run at the speed of the cellular network, which is plenty for browsing, apps and most collection jobs, but below a wired datacenter link. For raw throughput, datacenter or ISP proxies are the better fit.
Can I test before committing?
Yes. Buy 2 GB of rotating traffic for $5.24, or a dedicated device for 24 hours from $5.90 depending on the country.
Ready when you are
Get a carrier IP behind your next job.
Create your account, fund the wallet in the coin of your choice and pick rotating or dedicated. Access as soon as your top-up confirms.