# Crypto Pair State `GET` `https://api.unusualwhales.com/api/crypto/{pair}/state` Returns the current state for a crypto pair including 24h OHLCV data. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `pair` | string | Yes | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/crypto/{pair}/state" \ -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/{pair}/state", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": null } ```