address is the address to query balances for.
A successful response.
Coin defines a token with a denomination and an amount.
NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto.
const response = await fetch('https://luna.nownodes.io/cosmos/bank/v1beta1/balances/{address}/by_denom', { method: 'GET', headers: {}, }); const data = await response.json();
{ "balance": { "denom": "text", "amount": "text" } }