classic
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".
GET/{TICKER}/classic/{AGGREGATION_PERIOD}/maxchangeClassic Tier
chart
Powers the gexbot classic chart.
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".
Subscription
Requires a Classic subscription or higher.
Request
Example: /SPX/classic/full/maxchange
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. |
current | array | The strike and GEX value with the largest change in the last calculation cycle. |
one | array | The strike and GEX value with the largest change in the last 1 minute. |
five | array | The strike and GEX value with the largest change in the last 5 minutes. |
ten | array | The strike and GEX value with the largest change in the last 10 minutes. |
fifteen | array | The strike and GEX value with the largest change in the last 15 minutes. |
thirty | array | The strike and GEX value with the largest change in the last 30 minutes. |
{
"timestamp": 1753283592,
"ticker": "SPX",
"current": [
6325,
-1567.937
],
"one": [
6340,
-1997.391
],
"five": [
6340,
-2542.092
],
"ten": [
6315,
-2920.413
],
"fifteen": [
6330,
4320.937
],
"thirty": [
6340,
8553.528
]
}{
"type": "object",
"properties": {
"timestamp": {
"type": "integer",
"format": "int64"
},
"ticker": {
"type": "string",
"minLength": 2,
"maxLength": 5
},
"current": {
"type": "array",
"items": {
"type": "number"
}
},
"one": {
"type": "array",
"items": {
"type": "number"
}
},
"five": {
"type": "array",
"items": {
"type": "number"
}
},
"ten": {
"type": "array",
"items": {
"type": "number"
}
},
"fifteen": {
"type": "array",
"items": {
"type": "number"
}
},
"thirty": {
"type": "array",
"items": {
"type": "number"
}
}
},
"additionalProperties": false
}type: object
properties:
timestamp:
type: integer
format: int64
ticker:
type: string
minLength: 2
maxLength: 5
current:
type: array
items:
type: number
one:
type: array
items:
type: number
five:
type: array
items:
type: number
ten:
type: array
items:
type: number
fifteen:
type: array
items:
type: number
thirty:
type: array
items:
type: number
additionalProperties: false