Get a token's latest data on a network.
Retrieves detailed information about a specific token on the given network, including latest price, metadata, status, and recent summary metrics such as price changes and volumes over multiple timeframes.
Path Parameters
Network slug or ID (e.g., 'solana'). You can find the list of supported networks with their IDs here: /networks.
Token contract address. Such as JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN
for Jupiter on Solana.
Response
Essential information for a token, including metadata and status.
Internal or canonical ID for the token (e.g., "usdc-usd-coin").
Human-readable name of the token (e.g., "USD Coin").
Ticker symbol of the token (e.g., "USDC").
Decimal precision of the token (e.g., 6 for USDC).
A detailed overview of the token's purpose, use cases, or background.
Official website URL for the token/project.
Link to a block explorer or analytics page for this token.
A comprehensive summary of token-related metrics, including price, liquidity, and transaction volumes across various time intervals.
{
"price_usd": 125.67,
"fdv": 12567,
"liquidity_usd": 5000000,
"24h": {
"volume": 100000,
"volume_usd": 102000,
"sell": 150,
"buy": 180,
"txns": 330
},
"6h": {
"volume": 25000,
"volume_usd": 25500,
"sell": 45,
"buy": 50,
"txns": 95
},
"1h": {
"volume": 5000,
"volume_usd": 5100,
"sell": 10,
"buy": 15,
"txns": 25
},
"30m": {
"volume": 2500,
"volume_usd": 2550,
"sell": 5,
"buy": 8,
"txns": 13
},
"15m": {
"volume": 1250,
"volume_usd": 1275,
"sell": 2,
"buy": 4,
"txns": 6
},
"5m": {
"volume": 500,
"volume_usd": 510,
"sell": 1,
"buy": 1,
"txns": 2
}
}