Accounts

Get the account information on blockchain

GEThttps://akt.nownodes.io/auth/accounts/{address}
Path parameters
address*string

Account address

Example: "cosmos16xyempempp92x9hyzz9wrgf94r6j9h5f06pxxv"
Response

Account information on the blockchain

Body
typestring
valueobject
Request
const response = await fetch('https://akt.nownodes.io/auth/accounts/{address}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "type": "text",
  "value": {
    "account_number": "text",
    "address": "text",
    "coins": [
      {
        "denom": "stake",
        "amount": "50"
      }
    ],
    "public_key": {
      "type": "text",
      "value": "text"
    },
    "sequence": "text"
  }
}