Unusual Whales UnusualWhales API

Darkpool Price Levels

GET https://api.unusualwhales.com/api/darkpool/{ticker}/price-levels

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

Query Parameters

date Optional Market Date optional

A trading date in the format of YYYY-MM-DD. This is optional and by default the last trading date.

Example: 2024-01-18

Responses

200 422 500

Response Body 200 OK

data array[Darkpool Price Level]
date Market General Trading day

A trading date in ISO format.

Example: 2023-09-08
Try It GET
Path Parameters
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/darkpool/{ticker}/price-levels" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "dark_pool_volume": 12000,
      "price": "123.25",
      "regular_volume": 35000
    }
  ],
  "date": "2026-08-03"
}