Address Labels

Get known category labels and tags for one or more EVM addresses across supported chains.

PropertyValue
Endpoint/api/address/labels
MethodPOST
Credits2

Request Body

addressstring or string[], requiredOne or more EVM addresses. String input can separate addresses with commas or whitespace.
chainsstring[], requiredChain names, aliases, or CHAIN ID values.

Example

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

Response Data

JSON
{ "items": [{ "address": "0x...", "labels": [{ "category": "Exchange", "tags": ["Hot Wallet"] }] }] }