GET
/
api
/
ethereum
/
label
/
{address}
curl --location --request GET 'https://api.walletlabels.xyz/api/arbitrum/label/0xdef1c0ded9bec7f1a1670819833240f027b25eff?apikey=demo-api-key-x-00000' \
--header 'Content-Type: application/json' 
{
  "data": [
    { 
      "blockchain": "ethereum",
      "address": "0xdef1c0ded9bec7f1a1670819833240f027b25eff",
      "address_name": "aave v3: aave",
      "label_type": "defi",
      "label_subtype": "pool",
      "label": "aave"
    }
  ]
}

Inputs

address
string
required
Specify up the Ethereum addresse for which you want to retrieve labels.
apikey
string
required
Your API key for authentication.
limit
string
Specify number of shown results.
offset
string
Specify the starting point in the list of results for pagination. e.g. offset=0, offset=1, etc..

Response

data
array
An array that encapsulates the labels corresponding to the Ethereum address provided.
curl --location --request GET 'https://api.walletlabels.xyz/api/arbitrum/label/0xdef1c0ded9bec7f1a1670819833240f027b25eff?apikey=demo-api-key-x-00000' \
--header 'Content-Type: application/json' 
{
  "data": [
    { 
      "blockchain": "ethereum",
      "address": "0xdef1c0ded9bec7f1a1670819833240f027b25eff",
      "address_name": "aave v3: aave",
      "label_type": "defi",
      "label_subtype": "pool",
      "label": "aave"
    }
  ]
}