Dedicated datacenter IPs from our own blocks, residential exits in 170+ countries, and rotating pools billed by the gigabyte. Pick a country, grab your connection string, and start sending requests.
$ curl -x USER:PASS@ gw-rotating_shared.node4.io:8083 https://api.ipify.orgMost HTTP clients take a proxy URL directly, with nothing to install. A few need a connector or agent first, which our aiohttp and axios guides cover. Swap in your dashboard credentials and api.ipify.org echoes back the exit IP it saw. Repeat the call on a rotating plan and it draws a fresh address from the pool each time.
Dedicated or shared, static or rotating: every tier is priced right here on the site. No dashboard login, no deposit, no call with sales to see a number.
IP blocks we own outright. Clean, fast, one tenant per IP.
Real consumer IPs for geo-specific data and market research.
Owned datacenter blocks with a published cap of 5 users per IP.
Auto-rotating dedicated datacenter IPs, billed by bandwidth.
Auto-rotating shared IPs, billed by bandwidth. Our cheapest per GB.
Auto-rotating datacenter IPs with no byte meter, priced by concurrent connections.
Volume tiers, bandwidth packs and the free tier are all published. See the full price ladder
Our datacenter ranges are ours: the blocks are allocated to node4 and announced by node4, and we operate the machines they run on. Speed, reliability and IP reputation are ours to manage rather than a supplier's, and whois will confirm every word of that in one lookup.

Generate proxy credentials, monitor bandwidth usage, manage subscriptions, and access real-time analytics, all from a single, intuitive interface.
Shown: a new free-plan account, minutes after signup.
A proxy sits in the middle of everything you do, so this is the section worth reading slowly. Four commitments, stated plainly.
HTTPS stays end-to-end encrypted through the proxy. We never terminate or inspect TLS.
Username and password everywhere, or IP whitelist on the static datacenter and rotating tiers. On rotating you can also send your username with an empty password, which keeps country and session targeting without putting the secret in a config file. The residential gateway is credential-only.
We retain only the connection metadata needed to operate, secure and bill the service, and we cooperate with valid legal requests.
Granular permissions for team members and API keys.
If it speaks HTTP or SOCKS5, it works with node4. No SDK to install, no client to babysit. Authenticate with a username and password on any product, or whitelist your IP on the static datacenter tiers and skip credentials entirely.
const axios = require('axios');
const proxy = {
host: 'gw-rotating_shared.node4.io',
port: 8083,
auth: {
username: 'your_username',
password: 'your_password'
}
};
const response = await axios.get(
'https://api.example.com/data',
{ proxy }
);
console.log(response.data);