Volume Profile
https://api.unusualwhales.com/api/option-contract/{id}/volume-profile
Request
Authorization: Bearer <token>
Path Parameters
id
OptionContract
required
An option contract in the OSI format.
TSLA230526P00167500
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
ask_vol
Option Contract Ask Volume
The amount of volume that happened on the ask side. Ask side is defined as (ask + bid) / 2 < fill price.
119403
bid_vol
Option Contract Bid Volume
The amount of volume that happened on the bid side. Bid side is defined as (ask + bid) / 2 > fill price.
122789
cross_vol
Option Contract Cross Volume
The amount of cross volume. Cross volume consists of all transaction that have the cross trade code.
0
date
Market General Trading day
A trading date in ISO format.
2023-09-08
floor_vol
Option Contract Floor Volume
The amount of floor volume. Floor volume consists of all transaction that have the floor trade code.
142
mid_vol
Option Contract Mid Volume
The amount of volume that happened in the middle of the ask and bid. Mid is defined as (ask + bid) / 2 == fill price.
22707
multi_vol
Option Contract Multi Leg Volume
The amount of volume that happened as part of a multileg trade with another contract. This can be spreads/rolls/condors/butterflies and more.
7486
price
Fill Price
The fill price of the option trade.
21.50
sweep_vol
Option Contract Sweep Volume
The amount of sweep volume. Sweep volume consists of all transaction that have the sweep trade code.
18260
transactions
Option Contract Total Trades Count
The amount of transaction for this contract.
39690
volume
Option Contract Volume
The contract volume.
264899
curl -X GET "https://api.unusualwhales.com/api/option-contract/{id}/volume-profile" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
{
"data": [
{
"ask_vol": 850,
"bid_vol": 325,
"cross_vol": 5,
"date": "2024-05-28",
"floor_vol": 10,
"mid_vol": 25,
"multi_vol": 40,
"price": "3.50",
"sweep_vol": 120,
"transactions": 42,
"volume": 1250
},
{
"ask_vol": 620,
"bid_vol": 275,
"cross_vol": 0,
"date": "2024-05-28",
"floor_vol": 5,
"mid_vol": 15,
"multi_vol": 25,
"price": "3.55",
"sweep_vol": 90,
"transactions": 31,
"volume": 950
}
]
}