Call/Put Net/Vol Ticks
https://api.unusualwhales.com/api/stock/{ticker}/net-prem-ticks
Request
Authorization: Bearer <token>
Path Parameters
ticker
SingleTicker
required
A single ticker
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.
2024-01-18
Responses
200 422 500Response Body 200 OK
call_volume
Market General Call Volume
The sum of the size of all the call transactions that executed.
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.
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.
498271
date
Market General Trading day
A trading date in ISO format.
2023-09-08
net_call_premium
Market General Net Call Premium
Defined as (call premium ask side) - (call premium bid side).
-29138464
net_call_volume
Market General Net Call Volume
Defined as (call volume ask side) - (call volume bid side).
1049
net_delta
string
Net delta
26294.85
net_put_premium
Market General Net Put Premium
Defined as (put premium ask side) - (put premium bid side).
23924325
net_put_volume
Market General Net Put Volume
Defined as (put volume ask side) - (put volume bid side).
1313
put_volume
Market General Put Volume
The sum of the size of all the put transactions that executed.
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.
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.
314160
tape_time
General Tick time
The start time of the tick as a timestamp with timezone.
2023-09-07T09:30:00-04:00
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/net-prem-ticks" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
{
"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"
}
]
}