Last updated 7 months ago
address is the address to query balances for.
A successful response.
balances is the balances of all the coins.
pagination defines the pagination in the response.
const response = await fetch('https://lunc.nownodes.io/cosmos/bank/v1beta1/balances/{address}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "balances": [ { "denom": "text", "amount": "text" } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }