Get user balance notify Get balance low notification settings. Returns the threshold in the user's own currency.

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

GET

User -/user/balance-notify

Query method

GEThttps://api.stableproxy.com/v2/user/balance-notify

Code examples

async function getUserBalanceNotify() {
   const baseUrl = 'https://api.stableproxy.com/v2';
   const req = await fetch(baseUrl + '/user/balance-notify', {
         method: 'GET',
         headers: {
            'Authorization': 'API-Token [YOUR TOKEN]',
            'Content-Type': 'application/json'
         }
      }
   );
   
   const res = await req.json();
}