v1

latestOpenAPI 3.0.02026-07-26117198177.4 KB
Address Information

Get Balances for Address List

Returns current balances for all addresses in a stored list. Each address entry includes all native and token balances.

get/v2/addresses/list/{hash}/balances

Path parameters

hashstring required

Response

Balances for each address in the list.

Example response

{
  "balances": [
    {
      "address": "cosmos1abc...",
      "network": "cosmoshub-4",
      "assets": [
        {
          "symbol": "uatom",
          "amount": 1000000,
          "usd": 12.5
        }
      ],
      "updated_at": "2024-01-01T00:00:00.000Z"
    }
  ]
}