-session- token in your username.
Rotating (default)
Omit-session- and every request gets a fresh residential IP. This is ideal for high-volume scraping, spreading requests across many IPs, and avoiding rate limits.
Sticky
Add-session-<id> and all requests with the same id keep the same exit IP. Use this when a site needs continuity: logins, carts, checkouts, multi-step flows.
- Pick any id you like (
checkout1,user42, a UUID…). Different ids get different IPs. - Your session ids are private to your account. Two customers using the same id never share an IP.
Sticky duration
By default a sticky session holds its IP for a standard window. Control it with-sesstime-<min> (minutes, 3–1440):
Choosing a mode
| Use case | Mode |
|---|---|
| Large-scale scraping / data collection | Rotating |
| Login → action → logout flows | Sticky |
| Checkout / cart continuity | Sticky |
| Maximizing IP diversity | Rotating |
A sticky session pins one residential peer for its lifetime. If that peer is slow, start a new session id or switch to rotating.