Authorization
x-api-key
string
default: "demo-api-key-x-00000"
required
Your API key for authentication.
Body
Specify up to 10 BSC addresses for which you want to retrieve labels, separated
by commas.
Response
An array that encapsulates the labels corresponding to the BSC address provided. The designated name associated with the specific BSC address.
The BSC address for the label.
Categories like ‘token’, ‘exchange’, etc., to define the nature of the label.
Additional attributes, like token_contract_address or exchange_name, for a
more granular understanding of the label.
The general name or title of the label.
curl --location --request GET 'https://api-c.walletlabels.xyz/bsc/address?address=0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f' \
--header 'Content-Type: application/json' \
--header 'x-api-key: demo-api-key-x-00000'
{
"data" : [
{
"address_name" : "Uniswap" ,
"address" : "0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f" ,
"label_type" : "contract" ,
"label_subtype" : "decentralized_exchange" ,
"label" : "Uniswap V2 Factory Contract"
}
]
}