Token Price API
This endpoint is currently free to use with a 25 requests/second rate limit per IP
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: 36RequiredExample:
Array of token mint addresses to retrieve pricing for
["EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm","EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"]
Responses
200
Success
application/json
400
Invalid input
application/json
401
Unauthorized
text/plain
403
Forbidden
text/plain
429
Too Many Requests
text/plain
500
Internal Server Error
text/plain
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