# Get Crypto API OHLC Candles. `GET` `https://api.unusualwhales.com/api/crypto/candles/{interval}` Returns OHLC candles for a token. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `interval` | string | Yes | | ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `next_token` | string | No | | | `token1` | string | No | | | `token2` | string | No | | | `from` | CryptoDateTime | No | RFC 3339 datetime. | | `to` | CryptoDateTime | No | RFC 3339 datetime. | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `data` | array[Crypto API OHLC Candle] | | | `next_token` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/crypto/candles/{interval}" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Accept: application/json" ``` ### Python ```python import http.client conn = http.client.HTTPSConnection("api.unusualwhales.com") headers = {"Authorization": "Bearer YOUR_API_KEY", "Accept": "application/json"} conn.request("GET", "/api/crypto/candles/{interval}", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": [ { "bucket_start": "2026-07-29T12:34:00Z", "close": "93210.00", "high": "94321.00", "low": "89000.00", "open": "90000.00" } ], "next_token": "QEREAFDFEEE=" } ```