curl --request POST \
--url https://demo-api.mobula.io/api/1/wallet/labels \
--header 'Content-Type: application/json' \
--data '
{
"walletAddresses": "<string>",
"tokenAddress": "<string>"
}
'{
"data": [
{
"walletAddress": "<string>",
"labels": [
"<string>"
],
"walletMetadata": {
"entityName": "<string>",
"entityLogo": "<string>",
"entityLabels": [
"<string>"
],
"entityType": "<string>",
"entityDescription": "<string>",
"entityTwitter": "<string>",
"entityWebsite": "<string>",
"entityGithub": "<string>",
"entityDiscord": "<string>",
"entityTelegram": "<string>"
},
"platform": {
"id": "<string>",
"name": "<string>",
"logo": "<string>"
}
}
]
}Retrieve wallet labels (proTrader, smartTrader, freshTrader, sniper, insider, bundler, etc.) for a given wallet address and token address (optional).
curl --request POST \
--url https://demo-api.mobula.io/api/1/wallet/labels \
--header 'Content-Type: application/json' \
--data '
{
"walletAddresses": "<string>",
"tokenAddress": "<string>"
}
'{
"data": [
{
"walletAddress": "<string>",
"labels": [
"<string>"
],
"walletMetadata": {
"entityName": "<string>",
"entityLogo": "<string>",
"entityLabels": [
"<string>"
],
"entityType": "<string>",
"entityDescription": "<string>",
"entityTwitter": "<string>",
"entityWebsite": "<string>",
"entityGithub": "<string>",
"entityDiscord": "<string>",
"entityTelegram": "<string>"
},
"platform": {
"id": "<string>",
"name": "<string>",
"logo": "<string>"
}
}
]
}| Name | Required | Description |
|---|---|---|
walletAddresses | Yes | Wallet address. (string or array of strings) |
tokenAddress | No | Token address, if set, will return labels for the token |
Wallet Addresscurl --location 'https://api.mobula.io/api/1/wallet/labels' \
--header 'Content-Type: application/json' \
--data '{
"walletAddresses": [
"HFtFXatqaDqTsE4e4Cf7E8sRBx9zE7bmFzcHKCyXLzEx"
]
}'
Wallet Address & Token Addresscurl --location 'https://api.mobula.io/api/1/wallet/labels' \
--header 'Content-Type: application/json' \
--data '{
"walletAddresses": [
"HFtFXatqaDqTsE4e4Cf7E8sRBx9zE7bmFzcHKCyXLzEx"
],
"tokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
}'