Since: cosmos-sdk 0.47
address is the account address string.
A successful response.
info is the account info which is represented by BaseAccount.
const response = await fetch('https://zetachain.nownodes.io/cosmos/auth/v1beta1/account_info/{address}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "info": { "address": "text", "pub_key": { "type_url": "text", "value": "Ynl0ZXM=" }, "account_number": "text", "sequence": "text" } }