Market Tide
GET
https://api.unusualwhales.com/api/market/market-tide
Request
Security:
Bearer Auth
Authorization: Bearer <token>
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
otm_only
UseOtmOnly
optional
Only include out of the money transactions.
Example:
true
interval_5m
Use5mCandles
optional
Return data in 5 minutes intervals.
Default:
true
Responses
200 422 500Response Body 200 OK
net_call_premium
Market General Net Call Premium
Defined as (call premium ask side) - (call premium bid side).
Example:
-29138464
net_put_premium
Market General Net Put Premium
Defined as (put premium ask side) - (put premium bid side).
Example:
23924325
net_volume
Market General Net Volume
Defined as (call volume ask side) - (call volume bid side) - ((put volume ask side) - (put volume bid side)).
Example:
64312
timestamp
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
Query Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/market/market-tide" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"date": "2023-09-08",
"net_call_premium": "660338.0000",
"net_put_premium": "-547564.0000",
"net_volume": 23558,
"timestamp": "2023-09-08T09:30:00-04:00"
},
{
"date": "2023-09-08",
"net_call_premium": "4907138.0000",
"net_put_premium": "-1709539.0000",
"net_volume": 64312,
"timestamp": "2023-09-08T09:31:00-04:00"
},
{
"date": "2023-09-08",
"net_call_premium": "4839265.0000",
"net_put_premium": "-2731793.0000",
"net_volume": 80029,
"timestamp": "2023-09-08T09:32:00-04:00"
}
]
}