Get Proxy Rotate Token Rotate token Get (or create) the rotate-only API token for building a shareable rotate link.Call this immediately before copying a proxy-rotate link. The same `name` always resolves to the same token, so copying a link twice never invalidates the first one. The token carries a single ability, `packages.change-proxy-ip`.

A list of all publicly available methods for interacting with the API.

GET

Package Initiate a geo-location check for selected package proxies (by index, max 20).Connects through each selected proxy once to resolve its live egress IP, then returns the provider list (names + logos) and a per-provider result URL. The frontend renders a progress bar per provider and loads each URL (see proxyLocationService) to fill results in.The backend-only connect URLs and resolved egress IPs are stashed in cache under an opaque token — they never travel to the client. -/package/rotate-token/{id}

Query method

GEThttps://api.stableproxy.com/v2/package/rotate-token/{id}

Query parameters

IdentifierRegulationsExample
nameNot necessarilynullablestringregex:/^[\w \-]+$/u44
id1required32

Code examples

async function getPackageRotateToken() {
   const baseUrl = 'https://api.stableproxy.com/v2';
   const req = await fetch(baseUrl + '/package/rotate-token/{id}'
      .replace("{id}", 32) + '?' + Object.entries({
         "name": 44
      }).map(([key, value]) => key + "=" + value).join('&'), {
         method: 'GET',
         headers: {
            'Authorization': 'API-Token [YOUR TOKEN]',
            'Content-Type': 'application/json'
         }
      }
   );
   
   const res = await req.json();
}

Examples of answers