token_market_data
Retrieve market cap, 24h volume, all-time high, and price change for any token pair on decentralized exchanges.
Instructions
Get market cap, 24h volume, ATH, and price change for any token. Note: does NOT return pool depth or slippage — for pre-trade liquidity estimates, use a dedicated orderbook tool.
Use when: You need 24h trading volume, market cap, or all-time high for a token pair on decentralized exchanges. Returns: volume_24h_usd, market_cap_usd, price_usd, ath_usd, price_change_24h_pct Example response: {"token_a": "ETH", "token_b": "USDC", "price_usd": 2071.45, "volume_24h_usd": 312847293.0, "volume_change_24h_pct": -8.3, "market_cap_usd": 249800000000.0, "ath_usd": 4878.26, "price_change_24h_pct": -3.91, "source": "coingecko"}
Price: $0.000 USDC per call
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token_a | Yes | First token symbol | |
| token_b | Yes | Second token symbol, e.g. USDC |