Skip to main content
This guide takes you from “I have an account” to “I have a working integration” in five steps.
1

Get your API key

Sign in at backquant.com/api-access and create a key. Your key looks like:
2

Make your first call

Hit the composable GEX levels endpoint for BTC. Replace YOUR_API_KEY with your actual key:
3

Read the envelope

Every response uses the same envelope. A successful call returns:
Always check success before reading data. On failure you get success: false and an error object instead — see Errors for the full code list.The meta block tells you how stale the data is (freshness_seconds), which venues it came from (source), and the spot price at the time of computation (spot_price). Use request_id when reporting issues.
4

Add a filter or include

Most endpoints support filters. Here’s the same call with the composable ?include= parameter and an exchange filter:
Now the response includes the top-10 ranked strikes by |GEX|, the 0DTE max-pain strike, the 1σ/2σ expected move from ATM straddles, and the gamma flip zones — in one call.Common filters you’ll use across the API:
  • ?symbol=BTCUSDT|ETHUSDT|SOLUSDT|HYPEUSDT — supported symbols
  • ?exchanges=deribit,bybit,okx,binance — venue filter
  • ?expiry=all|0dte|<token> — single expiry slice
  • ?dte_min / ?dte_max / ?weekly_only=true — DTE-axis filter
  • ?moneyness_min / ?moneyness_max — strike/spot ratio bounds
  • ?include=... — opt-in to optional response sections
  • ?fields=... — top-level projection on heavy endpoints
5

Try the OPEX calendar

For a more product-y example, get the next 30 days of options expirations with their classification, OI, walls, and max-pain in one call:
The response gives you a ranked calendar of upcoming expirations, each tagged daily | weekly | monthly | quarterly, with the next monthly/quarterly anchor highlighted under next_anchor. See the OPEX concept page for what these mean and how to use them.

What is GEX?

The single most-asked concept question. Read this before integrating.

Response format

Full envelope schema, every meta field explained.

Rate limits

Per-tier limits, response headers, retry strategy.

Code examples

Python, TypeScript, curl recipes for common workflows.

OPEX calendar

Daily/weekly/monthly/quarterly classification, anchor expirations.

API reference

All 38 endpoints, with interactive try-it-out.