JavaScript
const options = {method: 'GET'}; fetch('https://gp-auth-module.prod.gnosispay.com/user/balances', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "data": [ { "currency": "<string>", "decimals": 123, "total": "<string>", "spendable": "<string>", "deductions": { "authorizedHolds": "<string>", "nonSpendable": "<string>", "processingDeposits": "<string>" }, "tokens": [ { "token": "<string>", "decimals": 123, "spendable": "<string>", "nonSpendable": "<string>", "processingDeposits": "<string>" } ] } ] }
Deprecated: use /user/balances/v2 instead. Returns the authenticated user’s account balances, including spendable amount and deduction breakdown.
Account balances retrieved successfully
Show child attributes