get_token_details
Retrieve detailed token information including price, market cap, volume, and liquidity. Optionally includes a price chart for deeper analysis.
Instructions
Get detailed information about a token: price, market cap, volume, liquidity, and optionally a price chart.
For just the USD price, use get_token_price instead — it's faster and simpler. For trending tokens (discovery), use get_trending_tokens first, then this tool for deep-dives.
When includeChart is true, returns a slimmed price chart (~50 data points with close prices, volumes, and summary stats). Raw chart data is ~21KB; this tool reduces it to ~3KB.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Token contract address. For native tokens use: EVM "0x0000000000000000000000000000000000000000", Solana "11111111111111111111111111111111", Bitcoin "bc1qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqmql8k8", Hyperliquid "0x00000000000000000000000000000000", Lighter "0". For other tokens, use the contract/mint address or look up via get_supported_tokens. | |
| chainId | Yes | Chain where the token lives (ID or name). | |
| includeChart | No | Include price chart data. Defaults to false. Adds ~3KB to response. |