Copy-paste examples for HTTP and SOCKS proxies. Replace placeholders with the host, port, username, and password from your active plan in the dashboard.
Dashboard is source of truthHTTP & SOCKS5
1. Get your credentials
STEP 1
Purchase a plan
Choose Budget Residential, Subscription, Premium Geo, IPv4 Unlimited, or IPv6 plans from pricing pages.
STEP 2
Open your pack
Go to Dashboard → select the product → open the active pack / endpoint builder.
Placeholders: HOST, PORT, USERNAME, PASSWORD. Sticky session and geo parameters are appended to the username on many residential plans — use the exact string from your dashboard.
2. Connection formats
Standard proxy URLs (HTTP CONNECT or SOCKS5 depending on plan):
import { ProxyAgent, fetch } from "undici";
const proxyUrl = "http://USERNAME:PASSWORD@HOST:PORT";
const agent = new ProxyAgent(proxyUrl);
const res = await fetch("https://api.ipify.org?format=json", {
dispatcher: agent,
});
console.log(await res.json());
Puppeteer / Playwright: set --proxy-server=HOST:PORT and authenticate with username/password in launch options.
Chrome / Edge: Settings → System → Open proxy settings → Manual proxy → enter HOST and PORT → save; when browsing, enter USERNAME and PASSWORD when prompted.