A sticky session tells the proxy gateway to keep giving you the same exit IP for a fixed window (minutes to hours) instead of a new IP on every request. On a mobile network the exit IP belongs to a real phone behind carrier NAT, so a sticky session means "stay on this phone" until the window ends or you release it.
Sticky session vs rotation
- Rotating: every request (or every N seconds) exits from a different device. Good for scraping public pages where each request is independent.
- Sticky: one device for the whole window. Required for anything with a login, a cart, or a multi-step flow, because platforms compare the IP across the session and treat a mid-session change as a hijack.
How long should a sticky session be?
Match it to the task, not to the maximum the provider allows:
- Login and post on a social account: the length of the session, then release.
- Checkout on a marketplace: until the order confirmation.
- Long automation runs: 30 to 120 minutes, which is how a phone naturally moves between towers, then rotate.
Holding one IP for days does not make it "cleaner"; a real phone changes IP when it moves. Rotating every few seconds during a login is what gets flagged.
Sticky sessions on dedicated vs shared mobile proxies
On a dedicated device you control rotation directly, so every session is effectively sticky until you rotate. On a shared pay-per-GB pool you request stickiness in the connection string (a session ID) and the gateway pins you to a device for the configured window.
1Does a sticky session guarantee the same IP?
For the configured window, yes, unless the device drops off the network. Then the gateway assigns a new device and the IP changes; check the response headers or your IP checker at the start of critical flows.
2Can I hold a sticky session across two accounts?
You can, but you should not: two logins from one IP inside one window look like one operator running two accounts. Use one session per account.
3Is a sticky session the same as a static proxy?
No. Static means one fixed IP for the life of the plan (usually datacenter or ISP). Sticky is a temporary pin on a rotating pool; when the window ends you get a new IP.
Run sticky sessions on real 4G/5G devices
Dedicated devices you rotate on demand, or pay-per-GB pools with configurable session length.