1. API
  2. Implied volatility
  3. VRP by expiration

Implied volatility API, GET /vrp/{ticker}/expirations

Where on NVDA's curve is the premium over realized sitting?

The volatility risk premium broken down by expiration. For each of the next expirations returns that expiration's IV, the realized vol over a matching horizon, the premium in points and as a share, and a signal, plus an average and a regime label for the curve.

PremiumPlan 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.

iv, hv and vrp are annualised percentage points; vrp_pct is the premium as a percentage of realized.

Per-expiration IV is the ATM chain IV; realized is matched to the days to that expiration.

curlBearer token from Account, then API Access
curl -H "Authorization: Bearer avmcp_YOUR_TOKEN" \
     "https://apexvol.com/api/mcp/data/vrp/NVDA/expirations?max_expirations=6"
Pythonrequests, nothing else
import requests

headers = {"Authorization": "Bearer avmcp_YOUR_TOKEN"}
params = {"max_expirations": "6"}
r = requests.get("https://apexvol.com/api/mcp/data/vrp/NVDA/expirations", headers=headers, params=params)
r.raise_for_status()
data = r.json()["data"]
print(data["avg_vrp"])
In Claude, Cursor or ChatGPTthrough the MCP server, no code
You

Which NVDA expiration has the richest premium over realized?

The assistant calls get_volatility_risk_premium 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/vrp/NVDA/expirations?max_expirations=6200, application/json, captured 2026-09-08
{
  "success": true,
  "data": {
    "as_of": "2026-09-08T08:06:55.731276",
    "avg_vrp": -10.47,
    "iv_units": "percentage_points",
    "regime": "UNDERPRICED",
    "regime_desc": "Options are significantly underpriced relative to historical moves.",
    "stock_price": 230.3,
    "ticker": "NVDA",
    "vrp_by_expiration": [
      {
        "dte": 1,
        "expiration": "2026-09-09",
        "hv": 27.24,
        "iv": 25.87,
        "signal": "NEUTRAL",
        "vrp": -1.37,
        "vrp_pct": -5.0
      },
      {
        "dte": 3,
        "expiration": "2026-09-11",
        "hv": 27.24,
        "iv": 30.44,
        "signal": "NEUTRAL",
        "vrp": 3.2,
        "vrp_pct": 11.7
      },
      {
        "dte": 6,
        "expiration": "2026-09-14",
        "hv": 27.24,
        "iv": 28.78,
        "signal": "NEUTRAL",
        "vrp": 1.54,
        "vrp_pct": 5.6
      }
    ]
  }
}

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.
max_expirationsquery101 to 30How many expirations to include.

Field by field

What each
number means.

vrp_by_expiration[].expiration, dte
The expiration and days to it.
vrp_by_expiration[].iv, hv, vrp, vrp_pct
The premium at that date.
vrp_by_expiration[].signal
RICH, CHEAP or NEUTRAL.
avg_vrp, regime, regime_desc
The curve in one line.

Access, limits, errors

Before the
first call.

Plan
Premium Premium 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; 403 Premium plan required; 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_volatility_risk_premium by name. One URL, a sign-in, no token to paste.

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

Which NVDA expiration has the richest premium over realized?

You

Is the front of the SPY curve rich or cheap to realized?

You

Break down AAPL's VRP by expiration.

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 →