Package proxy locations 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.

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

POST

Package -/package/proxy-locations/{id}

Query method

POSThttps://api.stableproxy.com/v2/package/proxy-locations/{id}

Query parameters

IdentifierRegulationsExample
indexesrequiredarray8
indexes.*Not necessarilyinteger0
id1required91

Code examples

async function postPackageProxyLocations() {
   const baseUrl = 'https://api.stableproxy.com/v2';
   const req = await fetch(baseUrl + '/package/proxy-locations/{id}'
      .replace("{id}", 91), {
         method: 'POST',
         headers: {
            'Authorization': 'API-Token [YOUR TOKEN]',
            'Content-Type': 'application/json'
         },
         body: JSON.stringify({
            "indexes": 8,
            "indexes.*": 0
         }),
      }
   );
   
   const res = await req.json();
}