Candlestick (OHLC) data for MULTIPLE assets in one call
Returns OHLC candlestick data (no volume — the underlying history source is price-only) for up to 10 CoinCap slugs in a single call — use this instead of looping per-asset candlestick calls for comparison and screening tasks. Per-slug failures (e.g. an unknown slug) are returned in-band as { slug, ok: false, error } entries rather than failing the whole request. Resolve slugs with /agentFriendly/assets_search before calling. One batch call consumes a single token from the shared TA rate pool (15 calls / 15s), regardless of how many slugs are requested. Each asset's candles are capped at 30 days of underlying history per call — coarse intervals return fewer candles than requested once that cap is hit (e.g. interval=d1 returns at most ~30 candles even if limit is higher). Duplicate slugs are deduplicated. If the slug list had to be cut down to 10, the requested limit had to be clamped to 200, or the 30-day history cap reduced the number of candles returned, the response includes a top-level "truncated": true flag (omitted when nothing was truncated).
Query parameters
Comma-separated CoinCap asset slugs (deduplicated, max 10, e.g. bitcoin,ethereum)
Candle timeframe, shared across all requested slugs
Number of most recent candles to return per asset (max 200). Actual history fetched per asset is also capped at 30 days, so a large limit with a coarse interval (e.g. d1) may return fewer candles than requested.
Response
Per-slug candlestick results
Changes
No recorded changes to this endpoint across all 1 revision of this API.