getCoinOHLCVLatest
Fetch the latest full-day open, high, low, close, and volume for a cryptocurrency by its canonical CoinPaprika slug. Use after resolving a ticker symbol to its ID.
Instructions
Get the latest full-day OHLC candle (open, high, low, close and volume) for a coin. Use for 'yesterday's candle for BTC'. For the live spot price use getTickersById. Read-only; coinId must be a canonical id (resolve a bare symbol with resolveId first), quote defaults to usd. No API key required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| quote | No | Quote currency (default: usd) | usd |
| 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. |