Skip to main content
POST
/
balances
Get wallet balances
curl --request POST \
  --url https://api.leokit.dev/balances \
  --header 'Api-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
    "chain": "ETH"
  },
  {
    "address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
    "chain": "BTC"
  }
]
'
{
  "wallets": [
    {
      "chain": "ETH",
      "balances": [
        {
          "token_symbol": "ETH",
          "price": 3500.25,
          "balance": 2.5,
          "balance_usd": 8750.625,
          "icon": "https://static.leofinance.io/icons/eth.png"
        }
      ],
      "explorer": "https://etherscan.io/address/0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
      "balance_usd": 8750.625
    }
  ]
}

Authorizations

Api-Key
string
header
required

Demo API-Key (Sandbox): 7037d2b3-9c76-4f62-b730-c544f7570fa4

Body

application/json
address
string
required

Wallet address

chain
string
required

Blockchain short name

Response

Wallet balances across multiple chains

wallets
object[]