IP rotation
Rotation links
A rotation link is a URL that rotates one device's IP when it's fetched. The secret is the token in the URL, so any tool that can hit a URL can trigger a rotation — no API headers required.
Create a link
Generate one in the dashboard, or over the API:
curl -X POST \
https://mobileproxy.app/api/v1/subscriptions/SUBSCRIPTION_ID/rotation-links \
-H "Authorization: Bearer mpx_live_…"
# → { "token": "rk_9f2c81d4e7",
# "url": "https://mobileproxy.app/rotate/rk_9f2c81d4e7" }Use it
Fetch the URL from anywhere — a browser, a scraper's "rotation URL" field, a cron job:
curl https://mobileproxy.app/rotate/rk_9f2c81d4e7
# → { "status": "rotating", "device": "…" }Treat the token like a password
Anyone with the link can rotate that device's IP. Share it only with tools you trust, and revoke it the moment you don't need it.
Revoke it
curl -X DELETE https://mobileproxy.app/api/v1/rotation-links/rk_9f2c81d4e7 \
-H "Authorization: Bearer mpx_live_…"The same best-effort caveat applies as for any rotation — see How rotation works. A link triggers a re-dial; whether the carrier issues a new exit_ip is the carrier's call.