getTickersHistoricalById
Retrieve historical snapshots of a coin's price, market cap, and volume at specific past dates or times using CoinPaprika. Use for analyzing point-in-time market data without OHLC candles.
Instructions
Get a coin's price, market cap and volume at past times as point-in-time snapshots (not OHLC candles). Use for 'price of BTC last Tuesday', 'ETH market cap on 2024-01-01'. For OHLC chart candles use getCoinOHLCVHistorical; for the current price use getTickersById. Read-only. Params: coinId (required) canonical id like 'btc-bitcoin' (resolve via resolveId); start (required) and end (optional, default now) accept 'yyyy-mm-dd' or ISO 8601; interval (optional, default '5m'); quote (optional, default 'usd'); limit (optional, default 50, max 250) caps points. Requires a Starter+ plan (COINPAPRIKA_API_KEY).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | End date | |
| limit | No | Number of data points (default: 50, max: 250) | |
| quote | No | Quote currency (default: usd) | usd |
| start | Yes | Start date (ISO 8601 or yyyy-mm-dd) | |
| coinId | Yes | Canonical CoinPaprika coin slug in 'symbol-name' format, e.g. 'btc-bitcoin', 'eth-ethereum', 'ada-cardano'. Do NOT pass ticker symbols ('BTC', 'AAVE') or guess the slug — it is not derivable from the symbol (e.g. AAVE resolves to 'aave-new', which you could not guess). Call search or resolveId first to resolve a symbol or name to its canonical id. | |
| interval | No | Interval (default: 5m) | 5m |