User
Lista wszystkich publicznie dostępnych metod interakcji z API.
GET
Get user balance notify -/user/balance-notify
Metoda zapytania
GEThttps://api.stableproxy.com/v2/user/balance-notify
Przykłady kodu
JavaScript
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();
}