Info
A list of all publicly available methods for interacting with the API.
GET
Get user info -/user/info
Query method
GEThttp://apilocal.stableproxy.com/v2/user/info
Code examples
JavaScript
1async function getUserInfo() {
2 const baseUrl = 'http://apilocal.stableproxy.com/v2';
3 const req = await fetch(baseUrl + '/user/info', {
4 method: 'GET',
5 headers: {
6 'Authorization': 'API-Token [YOUR TOKEN]',
7 'Content-Type': 'application/json'
8 }
9 }
10 );
11
12 const res = await req.json();
13}