GET
/
ethereum
/
mev_labels
curl --location --request GET 'https://api-c.walletlabels.xyz/ethereum/mev_labels?address=0x6b75d8af000000e20b7a7ddf000ba900b4009a80' \
--header 'Content-Type: application/json' \
--header 'x-api-key: demo-api-key-x-00000'
{
  "data": [
    {
      "blockchain": "Ethereum",
      "address": "0x6b75d8af000000e20b7a7ddf000ba900b4009a80",
      "label": "MEV",
      "label_subtype": "Arbitrage",
      "last_tx": [
        "0x45712296083971f41975d0298a807fbb96003d10f5aafa29e362302e8a764596"
      ],
      "protocols": ["uniswap_v2"]
    },
    {
      "blockchain": "Ethereum",
      "address": "0x6b75d8af000000e20b7a7ddf000ba900b4009a80",
      "label": "MEV",
      "label_subtype": "Sandwich",
      "last_tx": [
        "0x45712296083971f41975d0298a807fbb96003d10f5aafa29e362302e8a764596",
        "0xf48f5d6e284a8d8de1c6cc8f6ee1c609a704b65f40fe326a44619fec415d8790"
      ],
      "protocols": [""]
    }
    // ... more results ...
  ]
}

Authorization

x-api-key
string
default:"demo-api-key-x-00000"
required
Your API key for authentication.

Body

address
string
required
Specify up to 10 Ethereum addresses for which you want to retrieve labels, separated by commas.
limit
string
Specify number of shown results.
offset
string
Specify the starting point in the list of results for pagination.

Response

data
array
An array that encapsulates the MEV labels corresponding to the Ethereum address provided.
curl --location --request GET 'https://api-c.walletlabels.xyz/ethereum/mev_labels?address=0x6b75d8af000000e20b7a7ddf000ba900b4009a80' \
--header 'Content-Type: application/json' \
--header 'x-api-key: demo-api-key-x-00000'
{
  "data": [
    {
      "blockchain": "Ethereum",
      "address": "0x6b75d8af000000e20b7a7ddf000ba900b4009a80",
      "label": "MEV",
      "label_subtype": "Arbitrage",
      "last_tx": [
        "0x45712296083971f41975d0298a807fbb96003d10f5aafa29e362302e8a764596"
      ],
      "protocols": ["uniswap_v2"]
    },
    {
      "blockchain": "Ethereum",
      "address": "0x6b75d8af000000e20b7a7ddf000ba900b4009a80",
      "label": "MEV",
      "label_subtype": "Sandwich",
      "last_tx": [
        "0x45712296083971f41975d0298a807fbb96003d10f5aafa29e362302e8a764596",
        "0xf48f5d6e284a8d8de1c6cc8f6ee1c609a704b65f40fe326a44619fec415d8790"
      ],
      "protocols": [""]
    }
    // ... more results ...
  ]
}