Blockchain labels API Docs
  • Blockchain Labels - API Docs
  • API
    • Get Wallet Labels
Powered by GitBook
On this page
  • Description
  • Params Required
  • cURL Request Example
  • Response Example
  1. API

Get Wallet Labels

Description

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.

Params Required

"chain": "ethereum",
"address": "0x610e9845c1dd47607a37819c62577ce0bc36a8e2"

cURL Request Example

 curl --request GET \ 
     --url https://www.blockchainlabels.com/api/v1/labels/address/ethereum/0x610e9845c1dd47607a37819c62577ce0bc36a8e2 \ 
     --header 'X-API-KEY: {{YOUR_API_KEY}}' 

Response Example

{
    "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"
            }
        ]
    }
}
PreviousBlockchain Labels - API Docs

Last updated 7 months ago