Info
A list of all publicly available methods for interacting with the API.
GET
Get user info -/user/info
Query method
GEThttps://api.stableproxy.com/v2/user/info
Code examples
JavaScript
async function getUserInfo() {
const baseUrl = 'https://api.stableproxy.com/v2';
const req = await fetch(baseUrl + '/user/info', {
method: 'GET',
headers: {
'Authorization': 'API-Token [YOUR TOKEN]',
'Content-Type': 'application/json'
}
}
);
const res = await req.json();
}