1. API
  2. Gamma exposure
  3. Max pain

Gamma exposure API, GET /max-pain/{ticker}

What strike is max pain for SPY this expiration, and does it matter?

The max-pain strike, its distance from spot and how strong the magnet is. Returns the strike where option holders lose the most at expiration, the total pain there, the distance from spot and a magnet-strength label, with the pain at every strike.

BasicPlan and above, from $55/mo
1MCP tool that calls it
2026-09-08Sample captured from the live endpoint

The answer, in one call

Units first,
then the request.

Strikes and distance in dollars; distance_pct in percent; total_pain in dollars.

Sum of intrinsic value across open interest at each candidate settlement price.

curlBearer token from Account, then API Access
curl -H "Authorization: Bearer avmcp_YOUR_TOKEN" \
     "https://apexvol.com/api/mcp/data/max-pain/SPY"
Pythonrequests, nothing else
import requests

headers = {"Authorization": "Bearer avmcp_YOUR_TOKEN"}
r = requests.get("https://apexvol.com/api/mcp/data/max-pain/SPY", headers=headers)
r.raise_for_status()
data = r.json()["data"]
print(data["max_pain_strike"])
In Claude, Cursor or ChatGPTthrough the MCP server, no code
You

What is max pain for SPY this Friday?

The assistant calls get_max_pain and answers from the JSON below.

Tokens come with every paid or trial plan. Sign in and create one under Account, then API Access, or start a trial. Your ticker, your budget.

GET /api/mcp/data/max-pain/SPY200, application/json, captured 2026-09-08
{
  "success": true,
  "data": {
    "all_strikes": [
      {
        "strike": 769.0,
        "total_pain": 21794400.0
      },
      {
        "strike": 770.0,
        "total_pain": 21842200.0
      },
      {
        "strike": 771.0,
        "total_pain": 22844400.0
      }
    ],
    "distance_from_spot": -1.25,
    "distance_pct": -0.1623,
    "expiration": "2026-09-08",
    "likely_direction": "NEUTRAL",
    "magnet_strength": "WEAK",
    "max_pain_strike": 769.0,
    "max_pain_value": 21794400.0,
    "stock_price": 770.25,
    "success": true,
    "ticker": "SPY",
    "timestamp": "2026-09-08T08:07:20.699304"
  }
}

Every response is wrapped as {"success": true, "data": {...}}. Lists in the sample are cut to a few rows so it fits on a page; the shape is exactly what your code receives.

Parameters

Bounded,
and the bounds are stated.

Out-of-range numbers are clamped to the documented range, never silently changed to something else. A missing required field returns 400 with the reason.

NameInDefaultRangeMeaning
ticker requiredpathany covered symbolThe underlying, upper case. Use /search to check coverage.
expirationquerynearestYYYY-MM-DD, a listed expirationWhich expiration to use. Defaults to the nearest one.

Field by field

What each
number means.

max_pain_strike, max_pain_value
The strike and the pain there.
distance_from_spot, distance_pct
How far spot is from it.
magnet_strength, likely_direction
Whether the pull is meaningful.
all_strikes[].strike, total_pain
The distribution.

Access, limits, errors

Before the
first call.

Plan
Basic Basic and above. Tokens are issued to paid and trial accounts from $55 a month; each endpoint follows the tier of its web feature. An endpoint above your plan answers 402 and names the plan it needs.
Auth
Bearer token, prefix avmcp_, created under Account, then API Access. Shown once, hashed at rest, rotates in one click. Always call https://apexvol.com, never www.
Limits
60 requests a minute and 1,000 an hour per token, plus a monthly allowance by plan. Every response carries the remaining counts in X-RateLimit-* headers; a 429 carries Retry-After in seconds.
Errors
401 no or revoked token; 429 Retry-After seconds; 424 data feed unavailable, retry. The full list with payload shapes is on the errors page.
Since
API 1.0. Units, bases and timestamps follow the conventions shared by every endpoint; changes are logged in the API changelog.
Machine-readable
This page as Markdown, the family as one file, the whole API as llms-full.txt or OpenAPI 3.1.

The same data, in plain English

Ask for it
in an MCP client.

Connect the ApexVol MCP server and the assistant calls get_max_pain by name. One URL, a sign-in, no token to paste.

Prompts that hit this endpointcopy one into Claude, Cursor or ChatGPT
You

What is max pain for SPY this Friday?

You

Is NVDA trading above or below max pain?

You

How strong is the max pain magnet on AAPL this week?

More in the prompt library. Set the server up in Claude Desktop, Claude Code, Cursor, ChatGPT, VS Code, Windsurf or Gemini CLI.

Included with
every paid plan.

From $55 a month, tier-matched: your token queries the data your plan includes and Pro unlocks the full surface.

Real market data, not a sandbox. See it live on AAPL.

7 days free, cancel anytime Card required · no charge for 7 days
Start trial →