Unusual Whales UnusualWhales API

OI per Expiry

GET https://api.unusualwhales.com/api/stock/{ticker}/oi-per-expiry

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 500

Response 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
expiry Option Contract Expiry

The contract expiry date in ISO format.

Example: 2023-12-22
put_oi Total Put Open interest

The total put open interest.

Example: 3679410
Try It GET
Path Parameters
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock/{ticker}/oi-per-expiry" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "call_oi": 1123,
      "date": "2024-12-02",
      "expiry": "2024-12-06",
      "put_oi": 24443
    }
  ]
}