v36

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2024-11-1856109168.6 KB

Retrieve OI Change

Returns non-Index/non-ETF contracts and OI change data with the highest OI change.

get/api/market/oi-change

Query parameters

datestring date
Example:2024-01-18

A trading date in the format of YYYY-MM-DD. Defaults to the last trading date.

limitinteger
Example:10

How many items to return. Default is 100. Max is 200. Min is 1.

order'desc' | 'asc'
Example:asc

Whether to sort descending or ascending. Default is descending.

Response

Successful response with OI change data.

Example response

{
  "data": [
    {
      "avg_price": "30.0543738131838322",
      "curr_date": "2024-01-09",
      "curr_oi": 35207,
      "last_ask": "34.00",
      "last_bid": "32.90",
      "last_date": "2024-01-08",
      "last_fill": "33.50",
      "last_oi": 2119,
      "oi_change": "15.6149126946672959",
      "oi_diff_plain": 33088,
      "option_symbol": "MSFT240315C00350000",
      "percentage_of_total": "0.08879378869021333312",
      "prev_ask_volume": 32861,
      "prev_bid_volume": 235,
      "prev_mid_volume": 81,
      "prev_multi_leg_volume": 32762,
      "prev_neutral_volume": 81,
      "prev_total_premium": "99711396.00",
      "rnk": 74,
      "trades": 187,
      "underlying_symbol": "MSFT",
      "volume": 33177
    }
  ]
}