The need to keep IP addresses fixed for specific periods and then change them is a fundamental requirement in many automation scenarios when using Mobile Proxy services. In this guide, we'll examine in detail how to implement sticky rotating logic on Mobile Proxy and how to perform IP rotation at custom intervals such as 19 minutes.
Sticky rotating means keeping an IP address fixed for a certain period and then changing it automatically or manually after that time. This method is critically important especially in the following scenarios:
LivaProxy Mobile Proxy services offer flexible IP management features. The system supports sticky rotating logic with both manual and automatic IP changing options.
When you connect via Mobile Proxy, an IP address is assigned to you. This IP address remains fixed unless you send a change request. You can trigger an IP change at any time using the following methods:
The most practical method is to define an automatic reset time from your customer panel:
After this setting is activated, the system will automatically change your IP address every 19 minutes. You don't need to do anything.
If you want more control, you can periodically trigger the IP Rotate URL using a timer within your own software or script:
Python Example:
import requests
import time
rotate_url = "https://panel.livaproxy.com/api/rotate/YOUR_API_KEY"
interval = 1140 # 19 minutes (in seconds)
while True:
# Wait 19 minutes
time.sleep(interval)
# Change IP
response = requests.get(rotate_url)
print(f"IP rotated: {response.text}")
Timed Execution with Curl (Linux/Mac):
watch -n 1140 curl "https://panel.livaproxy.com/api/rotate/YOUR_API_KEY"
If the automation software you use offers scheduling features (e.g., task scheduler, cron jobs), you can configure your software to call the IP Rotate API every 19 minutes.
IP reset operations in LivaProxy Mobile Proxy services are extremely fast:
The 19-minute interval is seamlessly supported by the system and fits within recommended usage intervals.
When the IP changes, your current sessions (session/cookie) may be affected. Some platforms may interpret IP changes as session termination. Therefore:
Each IP reset operation requires a small data transfer. However, this amount is negligible (a few KB). With 19-minute intervals, approximately 75-80 resets occur per day, which does not significantly affect your total traffic quota.
Regular IP changes every 19 minutes can be detected as a pattern by some advanced anti-bot systems. To appear more natural:
If you need sticky rotating, which product should you choose?
| Feature | Mobile Proxy | Rotating Proxy |
|---|---|---|
| IP Fixation Duration | As long as you want (manual control) | Changes with each request or maximum 10-30 minutes with sticky session |
| Control Flexibility | Full control (manual + automatic) | Limited (with session key) |
| IP Quality | Real mobile device IPs, 100% clean | Mixed pool (residential/mobile/datacenter) |
| Speed | Depends on carrier (average 15-75 Mbps) | Generally higher |
| Price | GB-based, higher | GB-based, more economical |
| Use Case | High security, KYC, social media | Scraping, data collection, bulk operations |
For your 19-minute sticky rotating need, Mobile Proxy is the ideal choice because it offers you full control and high reliability.
This is normal. Existing TCP connections close during IP change. Your software should have an automatic reconnect mechanism.
In Mobile Proxy services, the IP pool depends on carrier infrastructure. Rarely, the same IP can be reassigned, but this is usually temporary. If you wait a few seconds and reset again, you'll get a different IP.
LivaProxy Mobile Proxy services fully support sticky rotating usage at custom intervals such as 19 minutes. You can implement the most suitable solution for your needs with both automatic reset settings and manual API control.
Our recommendation: If your operations are routine and repeatable, use the automatic reset feature. For more dynamic scenarios, control the API with a timer in your own software. Both methods provide high performance and reliability.
If you need support with installation or configuration, our 24/7 support team is ready to assist you.