Discover/VIXCentral API
live

VIXCentral APIvixcentral.com

Access real-time and historical VIX futures term structure, VIX9D, VIX3M, VIX6M, and contract prices via the VIXCentral API. Data available from 2007.

Endpoint health
verified 4d ago
get_current_vix_curve
get_historical_range
get_historical_vix_curve
3/3 passing latest checkself-healing
Endpoints
3
Updated
25d ago

What is the VIXCentral API?

The VIXCentral API provides 3 endpoints for accessing VIX futures term structure data and volatility market indicators. The get_current_vix_curve endpoint returns live contract month prices alongside VIX, VIX9D, VIX3M, and VIX6M index values. Historical endpoints let you retrieve the full futures curve for any single trading day back to 2007 or pull a time series across a date range up to 31 calendar days at a time.

Try it

No input parameters required.

api.parse.bot/scraper/e33cc124-14d6-4f83-9f64-e0f8be880c00/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e33cc124-14d6-4f83-9f64-e0f8be880c00/get_current_vix_curve' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace vixcentral-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.vix_central_api import VixCentral, Curve, HistoricalCurve, Snapshot

client = VixCentral()

# Get the current VIX futures term structure
current = client.curves.current()
print(current.date, current.indicators.VIX, current.indicators.VIX3M)

for contract in current.curve:
    print(contract.month, contract.last, contract.settle)

# Get historical curve for a specific date
historical = client.historicalcurves.get(date="2024-01-15")
print(historical.date, historical.vix_index)

for contract in historical.futures_curve:
    print(contract.month_index, contract.price)

# Fetch a time series of daily VIX data
snapshot = client.snapshots.fetch(start_date="2024-01-10", end_date="2024-01-20")
print(snapshot.start_date, snapshot.end_date, snapshot.truncated)

for day in snapshot.days:
    print(day.date, day.vix, day.futures)
All endpoints · 3 totalmissing one? ·

Retrieves the current VIX futures term structure including month labels, Last prices, Settle prices, and major VIX indices (VIX, VIX9D, VIX3M, VIX6M). Returns a snapshot timestamped at retrieval time. Each curve entry represents one futures contract month. Indicators may be null outside trading hours.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "date": "string, UTC timestamp of retrieval in YYYY-MM-DD HH:MM:SS format",
    "curve": "array of objects with keys: month (string), last (number), settle (number)",
    "indicators": "object with keys: VIX9D (number), VIX (number), VIX3M (number), VIX6M (number)"
  },
  "sample": {
    "data": {
      "date": "2026-06-11 00:04:15",
      "curve": [
        {
          "last": 20.75,
          "month": "Jun",
          "settle": 20.9
        },
        {
          "last": 21.5,
          "month": "Jul",
          "settle": 21.51
        },
        {
          "last": 21.9,
          "month": "Aug",
          "settle": 21.91
        }
      ],
      "indicators": {
        "VIX": 22.89,
        "VIX3M": 25.67,
        "VIX6M": 24.13,
        "VIX9D": 22.22
      }
    },
    "status": "success"
  }
}

About the VIXCentral API

Current VIX Futures Curve

The get_current_vix_curve endpoint returns a curve array where each object contains a month label, last price, and settle price for each active VIX futures contract. An indicators object accompanies the curve with four index values: VIX, VIX9D, VIX3M, and VIX6M. The response also includes a date field showing the UTC timestamp of retrieval, which lets you confirm data freshness. This endpoint takes no input parameters.

Historical Single-Day and Range Lookups

The get_historical_vix_curve endpoint accepts a single date parameter in YYYY-MM-DD format and returns the vix_index closing value alongside a futures_curve array of objects with month_index (1-based contract position) and price. Historical coverage starts from 2007, and only trading days with recorded data are returned. If you need multiple days, get_historical_range accepts start_date and end_date parameters and returns a data array where each entry contains a date, a vix value, and a futures array of contract prices. The range is capped at 31 calendar days per request; the truncated boolean in the response signals when that limit was exceeded.

Response Shape Notes

Current and historical endpoints use slightly different contract representations. The current curve uses named month strings (e.g. "Aug25") while historical endpoints use integer month_index values. The range endpoint returns futures prices as a plain array of numbers ordered by contract month, without named month labels. These structural differences are worth accounting for when merging data across endpoints in your pipeline.

Reliability & maintenanceVerified

The VIXCentral API is a managed, monitored endpoint for vixcentral.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when vixcentral.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official vixcentral.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track daily VIX futures contango and backwardation by plotting the curve array from get_current_vix_curve
  • Calculate the term structure slope between front and back months using last and settle prices from the current curve
  • Backtest volatility trading strategies using historical futures prices from get_historical_range over custom 31-day windows
  • Monitor VIX9D vs VIX spread as a short-term sentiment signal using the indicators object
  • Build a rolling term structure chart by stitching sequential get_historical_range calls from 2007 to present
  • Compare VIX3M and VIX6M to the spot VIX to assess medium-term volatility expectations
  • Detect roll yield opportunities by comparing settle prices across consecutive contract months
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does VIXCentral have an official developer API?+
VIXCentral does not publish an official developer API or documented data access endpoints. The site is primarily a charting and reference tool for retail and professional volatility traders.
What does `get_historical_range` return when the date range includes weekends or holidays?+
The endpoint filters results to trading days only. Weekends and market holidays are excluded from the data array. The start_date and end_date fields in the response reflect the requested boundary dates regardless of whether those specific dates had trading activity.
What happens if I request a range longer than 31 days in `get_historical_range`?+
The endpoint returns data up to its internal limit and sets the truncated field to true in the response. To cover a longer period, issue sequential requests with non-overlapping start_date and end_date values.
Does the API return options data, open interest, or volume for VIX futures contracts?+
Not currently. The API covers futures prices (last and settle), contract month labels, and the four VIX index values. Open interest, volume, and options data are not included in any response field. You can fork this API on Parse and revise it to add those fields if the source exposes them.
Is intraday or tick-level VIX futures data available?+
Not currently. All three endpoints return end-of-day or latest-available prices rather than intraday snapshots. The date field in get_current_vix_curve records the UTC retrieval timestamp, but the price data itself reflects the most recent published curve rather than a tick stream. You can fork this API on Parse and revise it to add intraday polling logic if needed.
Page content last updated . Spec covers 3 endpoints from vixcentral.com.
Related APIs in FinanceSee all →
cboe.com API
Retrieve delayed Cboe options chain data (including Greeks, pricing, volume, and open interest) for equities, indices, and VX futures, plus short sale circuit breaker (Rule 201) alerts by year.
barchart.com API
Monitor live stock quotes and commodity prices, analyze options chains with gamma exposure data, and access historical market time series to track top-performing stocks. Use real-time and historical data to make informed trading and investment decisions across equities and commodities.
alphavantage.co API
Track stock prices, forex rates, and cryptocurrency values with real-time and historical market data, while accessing company financials, earnings reports, and technical indicators. Search tickers, monitor economic indicators, analyze news sentiment, and get global quotes all in one place.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
tradingview.com API
Monitor live forex pair prices and technical indicators from TradingView, including real-time OHLC data, bid/ask spreads, moving averages, and pivot points. Analyze performance metrics and scan multiple currency pairs to make informed trading decisions.
forex.com API
Access real-time forex prices and currency exchange rates, track client sentiment and pivot points, and browse economic calendar events. Search across multiple currency instruments and retrieve rollover rates.
niftyindices.com API
niftyindices.com API
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.