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>"
      },
      "fundingInfo": {
        "from": "<string>",
        "date": "<string>",
        "chainId": "<string>",
        "txHash": "<string>",
        "formattedAmount": 123,
        "currency": {
          "name": "<string>",
          "symbol": "<string>",
          "logo": "<string>",
          "decimals": 123,
          "address": "<string>"
        },
        "fromWalletTag": "<string>",
        "fromWalletLogo": "<string>",
        "fromWalletMetadata": {
          "entityName": "<string>",
          "entityLogo": "<string>",
          "entityLabels": [
            "<string>"
          ],
          "entityType": "<string>",
          "entityDescription": "<string>",
          "entityTwitter": "<string>",
          "entityWebsite": "<string>",
          "entityGithub": "<string>",
          "entityDiscord": "<string>",
          "entityTelegram": "<string>",
          "extra": {}
        }
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.mobula.io/llms.txt

Use this file to discover all available pages before exploring further.

Query Details

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

Step-by-Step Tutorial and Video Walkthrough

  • Check out the guide: Here

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