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

Info

Our Token Info API endpoint allows you to retrieve the parsed metadata of a token and off-chain metadata.

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

Endpoint

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

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

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.

[
    {
        "Metadata": {
          "mint": "solana.PublicKey",
          "name": "string",
          "symbol": "string",
          "description": "string",
          "links": {
            "image": "string",
            "twitter": "string",
            "telegram": "string",
            "website": "string"
          }
        },
    
        "Dex": {
          "IsPaid": false,
          "Info": {
            "mint": "solana.PublicKey",
            "keys": {
              "pair": "solana.PublicKey",
              "quote": "solana.PublicKey"
            },
            "infos": {
              "name": "string",
              "symbol": "string",
              "type": "string",
              "created": "int"
            },
            "metrics": {
              "market_cap": "float64",
              "fdv": "float64",
              "volume": {
                "h1": "float64",
                "h24": "float64",
                "h6": "float64",
                "m5": "float64"
              },
              "price_change": {
                "h1": "float64",
                "h24": "float64",
                "h6": "float64",
                "m5": "float64"
              },
              "txns": {
                "h1": {
                  "buys": "int",
                  "sells": "int"
                },
                "h24": {
                  "buys": "int",
                  "sells": "int"
                },
                "h6": {
                  "buys": "int",
                  "sells": "int"
                },
                "m5": {
                  "buys": "int",
                  "sells": "int"
                }
              },
              "liquidity": {
                "usd": "float64",
                "base": "float64",
                "quote": "float64"
              },
              "price": {
                "sol": "float64",
                "usd": "float64"
              }
            },
            "links": {
              "url": "string",
              "image": "string",
              "header": "string",
              "opengraph": "string",
              "websites": [
                {
                  "label": "string",
                  "url": "string"
                }
              ],
              "socials": [
                {
                  "type": "string",
                  "url": "string"
                }
              ]
            },
            "boosts": {
              "total": "int"
            }
          }
        }
    },
    ...
]

PreviousMetadata

Last updated 2 months ago

🌐