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.
token_supply
is a raw integer. To get the actual supply, move the decimal point left by the decimals
value. Example: supply = raw_supply
/ 10^decimals
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,
"pools": 5,
"24h": {
"volume": 100000,
"volume_usd": 102000,
"buy_usd": 50000,
"sell_usd": 52000,
"sells": 150,
"buys": 180,
"txns": 330,
"last_price_usd_change": 50
},
"6h": {
"volume": 25000,
"volume_usd": 25500,
"sells": 45,
"buys": 50,
"buy_usd": 12500,
"sell_usd": 13000,
"txns": 95,
"last_price_usd_change": 10
},
"1h": {
"volume": 5000,
"volume_usd": 5100,
"buy_usd": 2500,
"sell_usd": 2600,
"sells": 10,
"buys": 15,
"txns": 25,
"last_price_usd_change": 2
},
"30m": {
"volume": 2500,
"volume_usd": 2550,
"buy_usd": 1250,
"sell_usd": 1300,
"sells": 5,
"buys": 8,
"txns": 13,
"last_price_usd_change": 1
},
"15m": {
"volume": 1250,
"volume_usd": 1275,
"buy_usd": 675,
"sell_usd": 700,
"sells": 2,
"buys": 4,
"txns": 6,
"last_price_usd_change": 0.5
},
"5m": {
"volume": 500,
"volume_usd": 510,
"buy_usd": 250,
"sell_usd": 260,
"sells": 1,
"buys": 1,
"txns": 2,
"last_price_usd_change": -0.5
},
"1m": {
"volume": 100,
"volume_usd": 102,
"buy_usd": 50,
"sell_usd": 52,
"sells": 1,
"buys": 0,
"txns": 1,
"last_price_usd_change": 0
}
}