GET
/
ethereum
/
mev_search
curl --location --request GET 'https://api-c.walletlabels.xyz/ethereum/mev_search?searchtext=sandwich' \
--header 'Content-Type: application/json' \
--header 'x-api-key: demo-api-key-x-00000'

{
  "data": [
    {
      "blockchain": "Ethereum",
      "address": "0x6b75d8af000000e20b7a7ddf000ba900b4009a80",
      "label": "MEV",
      "label_subtype": "Sandwich",
      "last_tx": ["0x45712296083971f41975d0298a807fbb96003d10f5aafa29e362302e8a764596", "0xf48f5d6e284a8d8de1c6cc8f6ee1c609a704b65f40fe326a44619fec415d8790"],
      "protocols":[""]
    },
    {
      "blockchain": "Ethereum",
      "address": "0xe8c060f8052e07423f71d445277c61ac5138a2e5",
      "label": "MEV",
      "label_subtype": "Sandwich",
      "last_tx": ["0xd34f5c5b10a247ac365247ca2ee1a624d7dd294b742ece7b0ad3fe2440ab2e97", "0x747947908bbe3ed2cbf5843ff906b883267fce3562bfd45da91cd775bce045a6"],
      "protocols":[""]
    }
    // ... more results ...
  ]
}

Authorization

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

Query Params

searchtext
string
required
Specify the name or part of the type of the MEV you wish to search for.
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 MEV labels corresponding to the Ethereum address provided.
curl --location --request GET 'https://api-c.walletlabels.xyz/ethereum/mev_search?searchtext=sandwich' \
--header 'Content-Type: application/json' \
--header 'x-api-key: demo-api-key-x-00000'

{
  "data": [
    {
      "blockchain": "Ethereum",
      "address": "0x6b75d8af000000e20b7a7ddf000ba900b4009a80",
      "label": "MEV",
      "label_subtype": "Sandwich",
      "last_tx": ["0x45712296083971f41975d0298a807fbb96003d10f5aafa29e362302e8a764596", "0xf48f5d6e284a8d8de1c6cc8f6ee1c609a704b65f40fe326a44619fec415d8790"],
      "protocols":[""]
    },
    {
      "blockchain": "Ethereum",
      "address": "0xe8c060f8052e07423f71d445277c61ac5138a2e5",
      "label": "MEV",
      "label_subtype": "Sandwich",
      "last_tx": ["0xd34f5c5b10a247ac365247ca2ee1a624d7dd294b742ece7b0ad3fe2440ab2e97", "0x747947908bbe3ed2cbf5843ff906b883267fce3562bfd45da91cd775bce045a6"],
      "protocols":[""]
    }
    // ... more results ...
  ]
}