Unusual Whales UnusualWhales API

Option Price Levels

GET https://api.unusualwhales.com/api/stock/{ticker}/option/stock-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

call_volume Market General Call Volume

The sum of the size of all the call transactions that executed.

Example: 990943
price Stock Price Level

The price level.

Example: 120.12
put_volume Market General Put Volume

The sum of the size of all the put transactions that executed.

Example: 808326
Try It GET
Path Parameters
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/option/stock-price-levels" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "call_volume": 22074116,
      "price": "120.12",
      "put_volume": 19941285
    },
    {
      "call_volume": 220741,
      "price": "123.12",
      "put_volume": 199415
    }
  ]
}