TradePortfolio
DocsOverview History

Options Overview History

Free

GET /options/overview-history


Hourly aggregate options trend data for the overview page. Returns USD-notional open interest and rolling 24h volume by exchange and symbol, so clients can stack the same dataset by venue or by coin.

Authentication

Available on all tiers. Response is limited to supported options exchange/symbol pairs.

Parameters

Query parameters

NameTypeRequiredDescription
rangestringPreset day lookback from 1d through 90d. Defaults to 30d. Legacy days is accepted until July 21, 2026.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  "https://api.loris.tools/options/overview-history?range=90d"

Example response

json
{
  "range": "90d",
  "days": 90,
  "count": 12600,
  "unit": "usd_notional",
  "resolution": "1h",
  "data": [
    {
      "hour": "2026-06-28T08:00:00Z",
      "timestamp": "2026-06-28T08:00:00Z",
      "exchange": "deribit",
      "symbol": "BTC",
      "notional_oi_usd": 24500000000,
      "notional_volume_24h_usd": 1200000000
    }
  ]
}

Related