Token Info API

We're seeking feedback to improve this API! Please share your thoughts in our Discord #svs-api channel let us know how we can improve or report any bugs you encounter!

Get Mint Information

post

Retrieve comprehensive information about a token mint including metadata, creator information, and trading history for tokens launched in the past 24 hours..

Supports tokens launched through the following platforms:

  • Raydium

  • Raydium Launchpad

  • Bonk.fun

  • Pump.fun

Authorizations
Body

Request for comprehensive mint information

mintstringRequired

Token mint address (base58 encoded)

Example: So11111111111111111111111111111111111111112Pattern: ^[1-9A-HJ-NP-Za-km-z]{32,44}$
Responses
200
Success
application/json
post
POST /mint_info HTTP/1.1
Host: beta-api.solanavibestation.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 54

{
  "mint": "So11111111111111111111111111111111111111112"
}
{
  "mint_info": {
    "name": "Bonk",
    "symbol": "BONK",
    "uri": "https://metadata.example.com/bonk.json",
    "user": "DRiP2Pn2K6fuMLKQmt5rZWxa91LAiGZX7LHa8geqtdJr",
    "timestamp": 1672531200,
    "trade_events": [
      {
        "timestamp": 1672531800,
        "user": "8sLbNZoA1cfnvMJLPfp98ZLAnFSYCFApfJKMbiXNLwxj",
        "sol_amount": 1500000000,
        "token_amount": 1000000000000,
        "is_buy": true
      },
      {
        "timestamp": 1672532400,
        "user": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
        "sol_amount": 750000000,
        "token_amount": 500000000000,
        "is_buy": false
      }
    ],
    "off_chain_metadata": {
      "description": "The first dog coin on Solana",
      "image": "https://arweave.net/hQiPZOsRZXGXBJd_82PhVdlM_hACsT_q6wqwf5cSY7I",
      "external_url": "https://bonkcoin.com"
    }
  }
}

Last updated