getCoinOHLCVHistorical
Retrieve historical OHLCV candles (open, high, low, close, volume) for a cryptocurrency coin over a specified date range and interval.
Instructions
Get OHLC candles (open, high, low, close, volume) for a coin. Use for 'daily chart last month', 'hourly candles since Jan 1'. For one past price use getTickersHistoricalById; for the latest candle use getCoinOHLCVLatest. 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 '24h'): one of '5m', '15m', '30m', '1h', '6h', '12h', '24h'; quote (optional, default 'usd'); limit (optional, default 50, max 250) caps candles. Requires a Starter+ plan (COINPAPRIKA_API_KEY).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | End date (ISO 8601 or yyyy-mm-dd) | |
| 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: 24h) | 24h |