Skip to main content
GET
/
options
/
opex
OPEX calendar with per-expiry context
curl --request GET \
  --url https://api.example.com/options/opex \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "symbol": "<string>",
    "horizon_days": 123,
    "expirations": [
      {
        "expiry": "<string>",
        "is_anchor": true,
        "oi": {
          "call_oi": 123,
          "put_oi": 123,
          "total_oi": 123,
          "pcr": 123,
          "notional_oi_usd": 123
        },
        "iv": {
          "atm_iv": 123,
          "skew_25d": 123,
          "put_25d_iv": 123,
          "call_25d_iv": 123
        },
        "gamma": {
          "net_gex": 123,
          "call_resistance": 123,
          "put_support": 123,
          "max_pain": {
            "strike": 123,
            "value": 123
          }
        },
        "expiry_date": "<string>",
        "dte": 123
      }
    ],
    "count": 123,
    "type_counts": {
      "daily": 0,
      "weekly": 0,
      "monthly": 0,
      "quarterly": 0
    },
    "spot_price": 123,
    "next_anchor": {
      "type": "<string>",
      "expiry": "<string>",
      "expiry_date": "<string>",
      "dte": 123
    },
    "filtered_types": [
      "<string>"
    ]
  },
  "meta": {
    "version": "<string>",
    "timestamp": "<string>",
    "request_id": "<string>",
    "symbol": "<string>",
    "spot_price": 123,
    "computed_at": "<string>",
    "freshness_seconds": 123,
    "source": [
      "<string>"
    ],
    "exchanges_filtered": [
      "<string>"
    ],
    "rate_limit": {},
    "extra": {}
  },
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.backquant.com/llms.txt

Use this file to discover all available pages before exploring further.

Curated calendar of upcoming expirations with type classification, anchor flag, OI, IV, gamma blocks (walls + max-pain), and next_anchor pointer.

See also

OPEX calendar

Max pain

Authorizations

X-API-Key
string
header
required

Your BackQuant API key (same key as v1)

Headers

X-API-Key
string | null

Query Parameters

symbol
enum<string>
default:BTCUSDT

Trading symbol: BTCUSDT, ETHUSDT, SOLUSDT, or HYPEUSDT.

Available options:
BTCUSDT,
ETHUSDT,
SOLUSDT,
HYPEUSDT
horizon
integer
default:30

Look-ahead window in days (1–365). Drops expiries beyond this.

Required range: 1 <= x <= 365
types
string | null

CSV filter on the type field: any subset of daily,weekly,monthly,quarterly. Default returns all types.

Response

Successful Response

data
OpexData · object
required
meta
V2Meta · object
required

The meta block returned alongside every v2 response.

Every field after version/timestamp is optional because endpoints attach different combinations — e.g. /v2/status skips symbol, the chain endpoint sets extra.filter_hash, etc. Listing them here means SDKs get a typed accessor for each instead of a generic meta: dict.

success
boolean
default:true