Information

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

GET

Get user info Get all user info, for example: name, email, currency, balance, phone, social links, features. -/user/info

Query method

GEThttp://apilocal.stableproxy.com/v2/user/info

Code examples

async function getUserInfo() {
   const baseUrl = 'http://apilocal.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();
}

Examples of answers