Address Balance
Get token balances and USD totals for an address across supported chains.
| Property | Value |
|---|---|
| Endpoint | /api/address/balance |
| Method | POST |
| Credits | 1 |
Request Body
addressstring, requiredWallet address to inspect.
chainsstring[], requiredChain names, aliases, or CHAIN ID values.
Example
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
{
"tokens": [{ "network": "eth-mainnet", "symbol": "ETH", "quantity": "1", "valueUsd": "2500" }],
"networkTotals": { "eth-mainnet": "2500" },
"totalValueUsd": "2500",
"pageKey": null
}