JavaScript
const options = {method: 'GET'}; fetch('https://gp-auth-module.prod.gnosispay.com/user/balances/v2', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "data": [ { "currency": "<string>", "decimals": 123, "spendable": "<string>", "nonSpendable": "<string>", "processingDeposits": "<string>", "processingWithdrawals": "<string>" } ] }
Returns the authenticated user’s account balances. Simplified response without token details or authorized holds.
Account balances retrieved successfully
Show child attributes