Token Price 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 Token Prices

post

Retrieve current and historical pricing information for specified token mints.

Supports tokens launched through the following platforms:

  • Raydium

  • Raydium Launchpad

  • Bonk.fun

  • Pump.fun

  • Pump.swap

Authorizations
Body

Request for token pricing information

mintsstring[] · max: 36Required

Array of token mint addresses to retrieve pricing for

Example: ["EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm","EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"]
Responses
200
Success
application/json
post
POST /price HTTP/1.1
Host: beta-api.solanavibestation.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 58

{
  "mints": [
    "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm"
  ]
}
{
  "prices": [
    {
      "base_mint": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
      "quote_mint": "So11111111111111111111111111111111111111112",
      "avg_price_1min": 180.45,
      "avg_price_15min": 179.83,
      "avg_price_1h": 178.92,
      "avg_price_24h": 175.67,
      "latest_price": 180.12
    }
  ]
}

Last updated