Desk dashboards routinely watch the entire crypto-options universe at once: BTC + ETH + SOL + HYPE. HittingDocumentation Index
Fetch the complete documentation index at: https://docs.backquant.com/llms.txt
Use this file to discover all available pages before exploring further.
/v2/gex/levels four times means
four HTTP round-trips. The multi endpoint collapses that into one.
The endpoint
/v2/multi/gex/levels takes a CSV of
symbols (up to 8) and returns a results map keyed by symbol:
Why it’s faster than N calls
Server-side, the bundle endpoint batches every lookup into a single operation rather than serving them sequentially. The result: one HTTP round-trip instead of N, and lower upstream load on our side. For a desk dashboard polling on a 30s loop, that’s a 4× reduction in round-trips with no client-side change beyond switching to the bundle endpoint.Partial results
If one of the requested symbols has no live data (cold cache), it appears inmissing and its results[symbol] is null — but the
other symbols still come back. The whole call doesn’t fail because
of one stale symbol.
invalid lists symbols that aren’t in the supported set
(BTCUSDT/ETHUSDT/SOLUSDT/HYPEUSDT) — your client got the symbol name
wrong.
Filters
?exchanges=deribit,bybit,okx,binance— same venue filter as single-symbol; applies to every symbol in the bundle.?include=ranked,max_pain,expected_move,zones— same composable includes. The single-symbolspotandcandlesincludes are intentionally absent here to keep the bundled payload bounded (candles arrays would multiply payload by ~10×).
Limits
- Up to 8 symbols per request (you have 4 today; the cap leaves room for future expansion).
- Duplicate symbols in the request are de-duplicated while preserving caller order.
When to use it
Use it for: dashboard refreshes, multi-symbol overlays, screeners that scan the universe. Don’t use it for: single-symbol drilldowns. The per-symbol endpoints support more includes (spot, candles) that the multi
endpoint omits.
Related concepts
What is GEX?
The data this bundles is the same as
/v2/gex/levels per symbol.Data freshness
The shared cache that makes the bundle cheap.
