Docs | monitor.ws
  • Welcome
  • Beta
  • 🌊Websocket
    • Quickstart
    • On-Chain Data
      • All
      • Account
      • Signer
      • Token
      • Creation
      • Migration
      • Transfer
    • Off-Chain Data
      • Pumpfun Monitor
        • King of the Hill
        • Meta
      • Dexscreener Monitor
        • Dex Paid
        • Dex Boost
  • 🌐Api
    • Quickstart
    • Transaction
      • Trade
    • On-Chain Data
      • Token
        • Metadata
        • Info
Powered by GitBook
On this page
  • Endpoint
  • Payload
  • Response
Export as PDF
  1. Api
  2. On-Chain Data
  3. Token

Metadata

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

In order to provide complete information, this endpoint will perform an off-chain request to obtain the description as well as the logo and socials.

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"
      }
    }
]

PreviousTokenNextInfo

Last updated 2 months ago

🌐