Checker

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

GET

Get ip query IP information -/ip/query/{ip?}

Query method

GEThttp://apilocal.stableproxy.com/v2/ip/query/{ip?}

Query parameters

IdentifierRegulationsExample
g-recaptcha-responserequiredrecaptchav3:ip0.5captcha_key"03AFcWeA690BhJU7VIxoIpsXXdDx7IVllNVz804lKvWNIBYmF42ALfY18TY4cjjQ0sY_...."
captcha-keyNot necessarilynullablestring"6Le6gTwUAAA ... secret ...tjbYd6IAYN_"

Code examples

async function getIpQuery{ip?}() {
   const baseUrl = 'http://apilocal.stableproxy.com/v2';
   const req = await fetch(baseUrl + '/ip/query/{ip?}?' + Object.entries({
         "g-recaptcha-response": "03AFcWeA690BhJU7VIxoIpsXXdDx7IVllNVz804lKvWNIBYmF42ALfY18TY4cjjQ0sY_....",
         "captcha-key": "6Le6gTwUAAA ... secret ...tjbYd6IAYN_"
      }).map(([key, value]) => key + "=" + value).join('&'), {
         method: 'GET',
         headers: {
            'Content-Type': 'application/json'
         }
      }
   );
   
   const res = await req.json();
}

Examples of answers

GET

Get ip current IP information -/ip/current

Query method

GEThttp://apilocal.stableproxy.com/v2/ip/current

Code examples

async function getIpCurrent() {
   const baseUrl = 'http://apilocal.stableproxy.com/v2';
   const req = await fetch(baseUrl + '/ip/current', {
         method: 'GET',
         headers: {
            'Content-Type': 'application/json'
         }
      }
   );
   
   const res = await req.json();
}

Examples of answers