Skip to main content
GET
/
2
/
wallet
/
labels
Get wallet labels
curl --request GET \
  --url https://demo-api.mobula.io/api/2/wallet/labels
{
  "data": [
    {
      "walletAddress": "<string>",
      "labels": [
        "<string>"
      ],
      "walletMetadata": {
        "entityName": "<string>",
        "entityLogo": "<string>",
        "entityLabels": [
          "<string>"
        ]
      },
      "platform": {
        "id": "<string>",
        "name": "<string>",
        "logo": "<string>"
      }
    }
  ]
}

Query Details

NameRequiredDescription
walletAddressesNoComma-separated wallet addresses (max 100)
tokenAddressNoToken address, if set, will return token-specific labels

Usage Examples

  • Query by Wallet Address
curl 'https://api.mobula.io/api/2/wallet/labels?walletAddresses=0x28c6c06298d514db089934071355e5743bf21d60'
  • Query by multiple Wallet Addresses
curl 'https://api.mobula.io/api/2/wallet/labels?walletAddresses=0x28c6c06298d514db089934071355e5743bf21d60,HFtFXatqaDqTsE4e4Cf7E8sRBx9zE7bmFzcHKCyXLzEx'
  • Query by Wallet Address & Token Address
curl 'https://api.mobula.io/api/2/wallet/labels?walletAddresses=0x28c6c06298d514db089934071355e5743bf21d60&tokenAddress=0xdac17f958d2ee523a2206206994597c13d831ec7'

Query Parameters

walletAddresses
string
tokenAddress
string

Response

200 - application/json

Wallet labels response

data
object[]
required