Skip to main content
GET
/
v1
/
contract
/
bulk
/
stats
Bulk contract stats for a list of symbols
curl --request GET \
  --url https://flow-api.skylit.ai/v1/contract/bulk/stats \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "symbol": "<string>",
      "ticker": "<string>",
      "expiration": "2023-12-25",
      "strike": 123,
      "dte": 123,
      "date": "2023-12-25",
      "totalPremium": 123,
      "totalVolume": 1,
      "openInterest": 1,
      "oiChange": 123,
      "bidVolume": 1,
      "askVolume": 1,
      "midVolume": 1,
      "vwap": 123,
      "lastPrice": 123,
      "underlyingPrice": 123,
      "iv": 123,
      "tradeCount": 1,
      "sweepVolume": 1,
      "sweepPremium": 123,
      "multiLegVolume": 1,
      "multiLegPremium": 123
    }
  ],
  "meta": {
    "timestamp": "2023-11-07T05:31:56Z",
    "requestId": "d7574836"
  }
}

Authorizations

Authorization
string
header
required

Skylit API key in the Authorization header (Authorization: Bearer fs_live_<key>). X-API-Key is also accepted.

Query Parameters

symbols
string
required

Comma-separated OPRA symbols (max 50).

Example:

"SPY__250516C00580000,SPY__250516P00580000"

date
string<date>

Trading date the request targets, in YYYY-MM-DD. Defaults to the current trading date (the most recent session that has settled enough data to be queryable). Past dates fall through to the daily rollup tables.

Example:

"2026-05-27"

Response

Per-contract stats.

data
object[]
required
meta
object
required