Address Identity

Get identity rows, exchange ownership rows, and deposit-address attribution for one to ten EVM addresses.

PropertyValue
Endpoint/api/address/identity
MethodPOST
Credits10

Request Body

addressesstring[], requiredEVM address array. Must contain 1 to 10 items.

Example

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

Response Data

JSON
{ "items": [{ "address": "0x...", "identity": { "found": true, "rows": [{ "blockchain": "ethereum", "name": "wallet.eth", "category": "ens", "source": "ens", "labelType": "identifier" }] }, "exchange": { "isExchange": true, "addressRows": [{ "blockchain": "ethereum", "cexName": "Example Exchange", "distinctName": "Hot Wallet", "addedBy": null, "addedDate": null }], "isDepositAddress": false, "depositRows": [] } }] }