# Digital Currency Historical Series `GET` `https://api.unusualwhales.com/api/digital-currencies/history` **Requires Advanced+ tier (Advanced, Enterprise, or Enterprise + Kafka).** Daily, weekly, or monthly OHLC bars for a digital asset. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `symbol` | string | Yes | | | `market` | string | Yes | | | `interval` | string | No | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/digital-currencies/history?symbol=VALUE&market=VALUE" \ -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/digital-currencies/history?symbol=VALUE&market=VALUE", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": null } ```