Token Info API
This endpoint is currently free to use with a 25 requests/second rate limit per IP
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
mintstringRequiredExample:
Token mint address (base58 encoded)
So11111111111111111111111111111111111111112
Pattern: ^[1-9A-HJ-NP-Za-km-z]{32,44}$
Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
text/plain
403
Forbidden
text/plain
404
Mint not found
application/json
429
Too Many Requests
text/plain
500
Internal Server Error
text/plain
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