Skip to main content
POST
/
v2
/
info
/
balances
Get Balances
curl --request POST \
  --url https://router-api.initia.xyz/v2/info/balances \
  --header 'Content-Type: application/json' \
  --data '
{
  "chains": {
    "interwoven-1": {
      "address": "init1abc...",
      "denoms": [
        "uinit"
      ]
    }
  }
}
'
{
  "chains": {
    "interwoven-1": {
      "denoms": {
        "uinit": {
          "amount": "1000000",
          "price_usd": "1.50",
          "value_usd": "1.50"
        }
      }
    }
  }
}

Body

application/json
chains
object
required

A map of chain IDs to address and denomination queries.

Response

200 - application/json

Successful response

chains
object

A map of chain IDs to balance results.