# Darkpool Price Levels `GET` `https://api.unusualwhales.com/api/darkpool/{ticker}/price-levels` Returns rounded darkpool and regular stock volume concentration by price level for one ticker. Each price is grouped into a bucket to highlight areas where trading activity is concentrated. Date must be the current or a past date. If no date is given, returns data for the current/last market day. ## 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 | |-------|------|-------------| | `data` | array[Darkpool Price Level] | | | `date` | Market General Trading day | A trading date in ISO format. | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/darkpool/{ticker}/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/darkpool/{ticker}/price-levels", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": [ { "dark_pool_volume": 12000, "price": "123.25", "regular_volume": 35000 } ], "date": "2026-08-03" } ```