Get Token ATH/ATL Values
Market & Token Data
Get Token ATH/ATL
Retrieve All-Time High (ATH) and All-Time Low (ATL) values for a token, including the dates when these price extremes were recorded.
GET
Get Token ATH/ATL Values
Overview
The Token ATH endpoint provides a lightweight response containing only the All-Time High and All-Time Low values for a token, along with their respective dates. This is ideal when you only need ATH/ATL data without the comprehensive token details returned by the/token/details endpoint.
GET Method - Single Item Query
Retrieve ATH/ATL information for a single token.Query Parameters
blockchain(required) — The blockchain identifier (e.g.,evm:1,solana,ethereum,base)address(required) — Direct token addresscurrencies(optional) — Comma-separated list of fiat currencies for price conversion. Defaults toUSD. Supported currencies:USD,EUR,GBP,JPY,CHF,CAD,AUD,CNY,KRW,INR,BRL
Usage Examples
Response Format
POST Method - Batch Query
Retrieve ATH/ATL data for multiple tokens in a single request for improved efficiency.Request Body
Body Parameters
The request body is an array of query objects, where each object contains:blockchain(required) — Blockchain id or nameaddress(required) — Direct token addresscurrencies(optional) — Comma-separated list of fiat currencies for price conversion. Defaults toUSD
Usage Examples
Response Format
Multi-Currency Support
When you specify multiple currencies using thecurrencies parameter, the response will include additional fields for each currency.
Example with currencies=EUR,USD
Converted Fields
The following field patterns are automatically converted:priceUSD→price{CURRENCY}athUSD→ath{CURRENCY}atlUSD→atl{CURRENCY}
Exchange rates are fetched from reliable forex data providers and cached for optimal performance. Rates are updated every 30 minutes.
Response Field Definitions
Use Cases
- Portfolio Tracking: Display ATH/ATL values alongside current prices to show distance from extremes
- Trading Signals: Identify tokens approaching their ATH or recovering from ATL
- Historical Analysis: Track when tokens reached their price extremes
- Market Dashboards: Show ATH/ATL data without fetching comprehensive token details
- Alert Systems: Monitor tokens for new ATH/ATL events
Comparison with Token Details
Use
/token/ath when you only need ATH/ATL values for faster responses and lower bandwidth usage.