Last updated 3 months ago
Success
"ok"
An object where each key is a string representing a currency identifier, and the corresponding value is an object containing the currency details.
const response = await fetch('https://nami.exchange/api/v4/user/balance', { method: 'GET', headers: {}, }); const data = await response.json();
{ "status": "ok", "data": { "1": { "value": 0, "locked_value": 0, "type": 0 }, "2": { "value": 0, "locked_value": 0, "type": 0 } } }