Off/Lit Price Levels
GET
https://api.unusualwhales.com/api/stock/{ticker}/stock-volume-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 500Response Body 200 OK
lit_vol
Stock Lit Volume
The lit volume (this only represents stock trades executed on exchanges operated by Nasdaq).
Example:
19941285
off_vol
Stock Off Lit Volume
The off lit stock volume (this only represents the FINRA operated exchanges).
Example:
22074116
price
number
The exact execution price level.
Try It
GET
Path Parameters
Query Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/stock-volume-price-levels" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"lit_vol": 19941285,
"off_vol": 22074116,
"price": 120.12
},
{
"lit_vol": 199415,
"off_vol": 220741,
"price": 123.12
}
]
}