Authorization
x-api-key
string
default:"demo-api-key-x-00000"
required
Your API key for authentication.
Body
Specify up to 10 Ethereum addresses for which you want to retrieve labels, separated
by commas.
Specify number of shown results.
Specify the starting point in the list of results for pagination.
Response
An array that encapsulates the MEV labels corresponding to the Ethereum address provided.
The designated name of the blockchain.
The Ethereum address for the label.
The general name or title of the label.
The nature of the attack being Sandwich, arbitrage or liquidation, for a more
granular understanding of the label.
An array containing the latest attack transactions associated with the address
and attack type.
List of protocols with which the address has engaged during its attack
activities.
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 ...
]
}