gex major levels
Provides the key GEX levels (Zero Gamma, Major Positive/Negative GEX by OI and Volume) from the classic GEX model. This is a slimmed-down version of the main GE
chart
Powers the gexbot classic chart.
Provides the key GEX levels (Zero Gamma, Major Positive/Negative GEX by OI and Volume) from the classic GEX model. This is a slimmed-down version of the main GEX chain endpoint.
Subscription
Requires a Classic subscription or higher.
Request
Example: /SPX/classic/full/majors
Headers
| Name | Type | Description |
|---|---|---|
Authorization | string | Required. Format: "Bearer <YOUR_API_KEY>" |
User-Agent | string | Required. Identify your client application. |
Accept | string | Required. Set to "application/json". |
Path parameters
| Name | Type | Description |
|---|---|---|
TICKER | string | Desired ticker symbol (e.g., SPX). |
AGGREGATION_PERIOD | string | Aggregation period: full, zero, or one. |
Response
| Field | Type | Description |
|---|---|---|
timestamp | number | The Unix timestamp of when the data was generated. |
ticker | string | The ticker symbol for the requested asset. |
spot | number | The spot price of the underlying asset. |
mpos_vol | number | The strike with the most positive GEX by volume. |
mpos_oi | number | The strike with the most positive GEX by open interest. |
mneg_vol | number | The strike with the most negative GEX by volume. |
mneg_oi | number | The strike with the most negative GEX by open interest. |
zero_gamma | number | The center of the options complex, according to a spline interpolation on gex by volume. |
net_gex_vol | number | Total net gamma exposure by volume. |
net_gex_oi | number | Total net gamma exposure by open interest. |
{
"timestamp": 1753283591,
"ticker": "SPX",
"spot": 6326.45,
"mpos_vol": 6339.92,
"mpos_oi": 6400,
"mneg_vol": 6300,
"mneg_oi": 6200,
"zero_gamma": 6323.39,
"net_gex_vol": 41199.07077,
"net_gex_oi": 57505.37699
}{
"type": "object",
"properties": {
"timestamp": {
"type": "integer",
"format": "int64"
},
"ticker": {
"type": "string",
"minLength": 2,
"maxLength": 5
},
"spot": {
"type": "number",
"format": "double"
},
"mpos_vol": {
"type": "number"
},
"mpos_oi": {
"type": "integer"
},
"mneg_vol": {
"type": "integer"
},
"mneg_oi": {
"type": "integer"
},
"zero_gamma": {
"type": "number"
},
"net_gex_vol": {
"type": "number"
},
"net_gex_oi": {
"type": "number"
}
},
"additionalProperties": false
}type: object
properties:
timestamp:
type: integer
format: int64
ticker:
type: string
minLength: 2
maxLength: 5
spot:
type: number
format: double
mpos_vol:
type: number
mpos_oi:
type: integer
mneg_vol:
type: integer
mneg_oi:
type: integer
zero_gamma:
type: number
net_gex_vol:
type: number
net_gex_oi:
type: number
additionalProperties: falsegex chain
Provides a ladder-style histogram of GEX by Open Interest and Volume. Call GEX is netted against Put GEX for each strike. Includes historical "lookback" data
gex max change
Contains the strikes with the most significant GEX change over various lookback periods (current, 1, 5, 10, 15, and 30 minutes). Also known as "max priors".