Metadata

Our Token Metadata API endpoint allows you to retrieve the parsed metadata of a token.

Endpoint

Since we are in BETA, this endpoint may change at any time.

GET
https://api.monitor.ws/api/token/metadata

Payload

Add one or more token by replacing pbk_n with the desired Solana account public keys (mint).

[
    "pbk_one",
    "pbk_two",
    "..."
]

Response

Token metadata are cached on our server. This means that your next request with the same token mint will be faster.

[
    {
      "mint": "solana.PublicKey",
      "name": "string",
      "symbol": "string",
      "description": "string",
      "links": {
        "image": "string",
        "twitter": "string",
        "telegram": "string",
        "website": "string"
      }
    },
    {
      "mint": "solana.PublicKey",
      "name": "string",
      "symbol": "string",
      "description": "string",
      "links": {
        "image": "string",
        "twitter": "string",
        "telegram": "string",
        "website": "string"
      }
    },
    {
      "mint": "solana.PublicKey",
      "name": "string",
      "symbol": "string",
      "description": "string",
      "links": {
        "image": "string",
        "twitter": "string",
        "telegram": "string",
        "website": "string"
      }
    }
]

Last updated