Address Transfers

Get token transfer totals by address across supported chains.

PropertyValue
Endpoint/api/address/transfers
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/transfers \ -H "Authorization: Bearer kk_your_key" \ -H "Content-Type: application/json" \ -d '{"address": "0x...", "chains": ["Ethereum", "Base"]}'

Response Data

JSON
{ "address": "0x...", "items": [{ "network": "eth-mainnet", "direction": "from", "counterparty": "0x...", "asset": "USDC", "totalValue": "12.5", "firstTimestamp": "2026-04-01T00:00:00Z", "lastTimestamp": "2026-04-02T00:00:00Z" }], "skippedNetworks": [] }