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
| Identifier | Regulations | Example |
|---|---|---|
| g-recaptcha-response | requiredrecaptchav3:ip0.5captcha_key | "03AFcWeA690BhJU7VIxoIpsXXdDx7IVllNVz804lKvWNIBYmF42ALfY18TY4cjjQ0sY_...." |
| captcha-keyNot necessarily | nullablestring | "6Le6gTwUAAA ... secret ...tjbYd6IAYN_" |
Code examples
JavaScript
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
Success response
GET
Get ip current IP information -/ip/current
Query method
GEThttp://apilocal.stableproxy.com/v2/ip/current
Code examples
JavaScript
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();
}