Unusual Whales UnusualWhales API

Call/Put Net/Vol Ticks

GET https://api.unusualwhales.com/api/stock/{ticker}/net-prem-ticks

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
call_volume_ask_side Market General Call Volume Ask Side

The sum of the size of all the call transactions that executed on the ask side.

Example: 417251
call_volume_bid_side Market General Call Volume Bid Side

The sum of the size of all the call transactions that executed on the bid side.

Example: 498271
date Market General Trading day

A trading date in ISO format.

Example: 2023-09-08
net_call_premium Market General Net Call Premium

Defined as (call premium ask side) - (call premium bid side).

Example: -29138464
net_call_volume Market General Net Call Volume

Defined as (call volume ask side) - (call volume bid side).

Example: 1049
net_delta string

Net delta

Example: 26294.85
net_put_premium Market General Net Put Premium

Defined as (put premium ask side) - (put premium bid side).

Example: 23924325
net_put_volume Market General Net Put Volume

Defined as (put volume ask side) - (put volume bid side).

Example: 1313
put_volume Market General Put Volume

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

Example: 808326
put_volume_ask_side Market General Put Volume Ask Side

The sum of the size of all the put transactions that executed on the ask side.

Example: 431791
put_volume_bid_side Market General Put Volume Bid Side

The sum of the size of all the put transactions that executed on the bid side.

Example: 314160
tape_time General Tick time

The start time of the tick as a timestamp with timezone.

Example: 2023-09-07T09:30:00-04:00
Try It GET
Path Parameters
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/net-prem-ticks" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "call_volume": 1145,
      "call_volume_ask_side": 822,
      "call_volume_bid_side": 182,
      "date": "2025-03-21",
      "net_call_premium": "2234.00",
      "net_call_volume": 640,
      "net_delta": "26294.85817964231814400",
      "net_put_premium": "-11106.00",
      "net_put_volume": -137,
      "put_volume": 241,
      "put_volume_ask_side": 49,
      "put_volume_bid_side": 186,
      "tape_time": "2025-03-21T19:58:00.000000Z"
    },
    {
      "call_volume": 1255,
      "call_volume_ask_side": 912,
      "call_volume_bid_side": 192,
      "date": "2025-03-21",
      "net_call_premium": "3234.00",
      "net_call_volume": 720,
      "net_delta": "28294.85817964231814400",
      "net_put_premium": "-9106.00",
      "net_put_volume": -127,
      "put_volume": 231,
      "put_volume_ask_side": 59,
      "put_volume_bid_side": 166,
      "tape_time": "2025-03-21T19:59:00.000000Z"
    }
  ]
}