Address Identity
Get identity rows, exchange ownership rows, and deposit-address attribution for one to ten EVM addresses.
| Property | Value |
|---|---|
| Endpoint | /api/address/identity |
| Method | POST |
| Credits | 10 |
Request Body
addressesstring[], requiredEVM address array. Must contain 1 to 10 items.
Example
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
{
"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": []
}
}]
}