# Off/Lit Price Levels `GET` `https://api.unusualwhales.com/api/stock/{ticker}/stock-volume-price-levels` Returns the lit & off lit stock volume per price level for the given ticker. ---- Important: The volume does **NOT** represent the full market dialy volume. It only represents the volume of executed trades on exchanges operated by Nasdaq and FINRA off lit exchanges. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `ticker` | SingleTicker | Yes | A single ticker | ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `date` | Optional Market Date | No | A trading date in the format of YYYY-MM-DD. This is optional and by default the last trading date. | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `lit_vol` | Stock Lit Volume | The lit volume (this only represents stock trades executed on exchanges operated by Nasdaq). | | `off_vol` | Stock Off Lit Volume | The off lit stock volume (this only represents the FINRA operated exchanges). | | `price` | number | The exact execution price level. | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/stock-volume-price-levels" \ -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/stock/{ticker}/stock-volume-price-levels", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": [ { "lit_vol": 19941285, "off_vol": 22074116, "price": 120.12 }, { "lit_vol": 199415, "off_vol": 220741, "price": 123.12 } ] } ```