OI per Strike
GET
https://api.unusualwhales.com/api/stock/{ticker}/oi-per-strike
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
call_oi
Total Call Open interest
The total call open interest.
Example:
3994750
date
Market General Trading day
A trading date in ISO format.
Example:
2023-09-08
put_oi
Total Put Open interest
The total put open interest.
Example:
3679410
strike
Option Contract Strike
The contract strike.
Example:
375
Try It
GET
Path Parameters
Query Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/oi-per-strike" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"call_oi": 1123,
"date": "2024-12-02",
"put_oi": 24443,
"strike": "420"
}
]
}