Address Balance

Get token balances and USD totals for an address across supported chains.

PropertyValue
Endpoint/api/address/balance
MethodPOST
Credits1

Request Body

addressstring, requiredWallet address to inspect.
chainsstring[], requiredChain names, aliases, or CHAIN ID values.

Example

curl
curl -X POST https://kittyhome.pages.dev/api/address/balance \ -H "Authorization: Bearer kk_your_key" \ -H "Content-Type: application/json" \ -d '{"address": "0x...", "chains": ["Ethereum", "8453"]}'

Response Data

JSON
{ "tokens": [{ "network": "eth-mainnet", "symbol": "ETH", "quantity": "1", "valueUsd": "2500" }], "networkTotals": { "eth-mainnet": "2500" }, "totalValueUsd": "2500", "pageKey": null }