REST API · Add-on for Pro & Trader

Build on top of live gamma data.

Pull Net GEX, Call Wall, Put Wall, Gamma Flip, dealer regime, 0DTE volume, and full Greeks Exposure into your trading bots, alerts, and custom dashboards.

Quickstart → Pricing
API access is an add-on, not a standalone product. You'll need an active Pro or Trader subscription on top of the API. This is a structural requirement of our market data agreement — programmatic access is authorized exclusively for active GEXBoard subscribers (Massive Options Business · Edge Users § 6.1(e)).

One call. Live data.

Authenticate with your API key (Bearer token) and get JSON in milliseconds. Same data your dashboard sees, same SSE stream during 0DTE sessions.

# Live GEX snapshot for SPY (0DTE)
curl "https://gexboard.com/api/v1/radar?ticker=SPY&dte=0" \
  -H "Authorization: Bearer gxb_live_YOUR_KEY"
import requests

key = "gxb_live_YOUR_KEY"
r = requests.get(
    "https://gexboard.com/api/v1/radar",
    params={"ticker": "SPY", "dte": 0},
    headers={"Authorization": f"Bearer {key}"},
)
data = r.json()
print(data["net_gex"], data["call_wall"], data["put_wall"])

What you get

All data your subscription tier already sees in the dashboard, exposed as REST. Same calculation engine, same refresh rate.

📊

Net GEX + Walls + Flip

Net Gamma Exposure, Call/Put Walls, Gamma Flip level, dealer regime (long/short gamma).

0DTE Volume

Per-strike call/put volume + cumulative delta during regular session hours.

🔥

Heatmap

Strike-level GEX intensity per DTE bucket. Visualize concentration in JSON.

📜

History

14-day rolling history (Pro) or 30-day (Trader). Backtest and chart trends.

🧠

Greeks Exposure Trader

DEX, VEX, CEX (Charm/Vanna/Vomma) per strike. Full second-order greeks aggregation.

💎

Premium Map Trader

Net premium flow (calls vs puts) per strike, sized by dollar volume.

Data freshness

Every response includes a market_state field. Use it to branch your logic on what's live vs frozen.

market_state Time (ET) Spot Aggregates (walls/flip/regime) Per-strike greeks (delta/iv)
"rth" 09:30–16:00 Mon–Fri Live Live (~30s refresh) Live (~30s refresh)
"pre_market" 04:00–09:30 Mon–Fri Extended-hours (Yahoo) Last close values Stale; may be 0 or null until open
"after_hours" 16:00–20:00 Mon–Fri Extended-hours (Yahoo) Frozen at close Frozen at close; may be 0 or null
"closed" Outside above + weekends Last close Frozen at close Frozen; expect 0 or null

Holidays: NYSE holidays are not auto-detected in v1. On a holiday market_state still reports per the weekday schedule but per-strike greeks will behave as if closed (because the upstream chain has no fresh quotes to value against).

Recommended pattern: if your workflow depends on per-strike delta_call / delta_put / iv_*, check market_state == "rth" before treating the values as live. Aggregate fields (walls, flip, regime, net_gamma) remain meaningful through after-hours because they're computed from OI which settles overnight via OCC.

Pricing

API access is an add-on to your existing Pro or Trader subscription. The base plan covers your dashboard access; the add-on covers programmatic access on top. Personal or single-team use only — see terms.

🔒
Founder Rate — lock these prices forever. Subscribe today and your add-on rate stays at $89 / $169 for as long as your subscription is active. Future price increases apply only to new signups, never to existing customers. See modification policy.
PRO API FOUNDER
$89/mo
+ your $39 Pro plan = $128/mo total · locked forever
  • 60 requests / minute
  • 50,000 requests / day
  • Net GEX, Walls, Flip, regime
  • 0DTE volume + cumulative delta
  • Heatmap (per-strike GEX intensity)
  • 14-day rolling history
  • Email support
Add via /account →

Need higher limits or commercial redistribution? Contact us for an Enterprise quote.

🚫 Acceptable use — read before purchasing

The API is licensed for your own personal or single-team use. By clicking Add via /account, you agree to the conditions below. Misuse can result in immediate suspension without refund.

✓ Permitted
  • Personal trading bots, alerts, dashboards
  • Your own org's research & internal tools
  • Single-team backtesting & analysis
  • Notebooks, scripts, academic use
✗ Not permitted
  • Reselling or redistributing API responses
  • Mirror, proxy, or wrap as your own product
  • Building competing GEX products w/ our methodology
  • Training ML models for resale or external use
  • Sharing your API key across organizations
  • Multi-tenant or commercial redistribution use

Need to redistribute or run a multi-tenant service? An Enterprise license is required — contact@gexboard.com. Full obligations are listed in the API Terms of Service.

What people build

A few patterns we see in customer code today.

Trading bots Position sizing on Net GEX regime, exits at Call/Put Wall.
Custom alerts Slack/Telegram pings on flip cross, wall break, dealer regime change.
Backtesting Pull 30-day history, replay regime against your strategy logic.
Internal dashboards Combine GEX with your own data feed in Grafana, Notion, custom UI.
Research notebooks Jupyter / Colab pipelines correlating GEX with realized vol, basis, IV skew.
Quant signals Charm/Vanna gradient screens, pinning probability scoring.

Ready to build?

Add API access from your account in under a minute. Key shown once, prorated charge.

Read the quickstart →