GEX
Public feedInitializing terminal
First API call in 30 seconds
Go from zero to live gamma data in under 30 seconds. This guide walks you through authentication, your first API call, response parsing, and real-time streaming.
Create an API key from your dashboard. Navigate to Dashboard → API Keys or go directly to /dashboard/api-keys. Click Create Key, give it a name, and copy the key. You will not be able to see the full key again after creation.
All API requests require the X-API-Key header. The simplest call fetches gamma exposure for SPX:
All endpoints return a JSON envelope with these top-level fields:
Positive total_gex indicates a positive gamma environment where dealers suppress volatility. Negative total GEX indicates dealers will amplify moves.
For live updates, connect to the WebSocket endpoint. You will receive updates whenever the engine recomputes (approximately every second during market hours).
After connecting, send a subscription message specifying the channels you want. Available channels include gex, signals, regime, and levels.
# Step 2: Your first request curl -X GET "https://api.gexengine.com/v1/gex/SPX" \ -H "X-API-Key: YOUR_API_KEY" # Check your key works curl "https://api.gexengine.com/v1/health" \ -H "X-API-Key: YOUR_API_KEY"