This endpoint allows the developer to submit an address and the chain they want to check. The response will provide the address's labels. An opitonal name param will appear if we have the known or suspected identity of the address.
Copy "chain": "ethereum",
"address": "0x610e9845c1dd47607a37819c62577ce0bc36a8e2"
Copy curl --request GET \
--url https://www.blockchainlabels.com/api/v1/labels/address/ethereum/0x610e9845c1dd47607a37819c62577ce0bc36a8e2 \
--header 'X-API-KEY: {{YOUR_API_KEY}}'
Copy {
"error": null,
"data": {
"_id": "0x610e9845c1dd47607a37819c62577ce0bc36a8e2",
"labels": [
{
"_id": 2,
"label": "Tornado Cash Withdrawer",
"type": "Mixer User"
},
{
"_id": 53,
"label": "Received from OFAC Sanctioned Address",
"type": "Security"
},
{
"_id": 4680,
"label": "USDC Received 1M+",
"type": "Stablecoin: Large Volume"
},
{
"_id": 4681,
"label": "USDC Sent 1M+",
"type": "Stablecoin: Large Volume"
},
{
"_id": 4679,
"label": "USDC User",
"type": "Stablecoin"
},
{
"_id": 4923,
"label": "Address Funded by Mixer",
"type": "Mixer User"
}
]
}
}