Skip to main content
POST
/
1
/
wallet
/
labels
Get wallet labels
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>"
      }
    }
  ]
}

Query Details

NameRequiredDescription
walletAddressesYesWallet address. (string or array of strings)
tokenAddressNoToken address, if set, will return labels for the token

Usage Examples

  • Query by Wallet Address
curl --location 'https://api.mobula.io/api/1/wallet/labels' \
--header 'Content-Type: application/json' \
--data '{
    "walletAddresses": [
        "HFtFXatqaDqTsE4e4Cf7E8sRBx9zE7bmFzcHKCyXLzEx"
    ]
}'
  • Query by Wallet Address & Token Address
curl --location 'https://api.mobula.io/api/1/wallet/labels' \
--header 'Content-Type: application/json' \
--data '{
    "walletAddresses": [
        "HFtFXatqaDqTsE4e4Cf7E8sRBx9zE7bmFzcHKCyXLzEx"
    ],
    "tokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
}'

Body

application/json
walletAddresses
tokenAddress
string

Response

200 - application/json

Wallet labels response

data
object[]
required