Discover/cboe.com API
live

cboe.com APIcboe.com

Retrieve CBOE delayed options chains with full Greeks, open interest, and volume for equities, indices, and VX futures. Includes short sale circuit breaker alerts.

Endpoints
3
Updated
10d ago
Try it
Ticker symbol. Equities: SPY, AAPL, MSFT. Indices: SPX, VIX, NDX (auto-prefixed with under
api.parse.bot/scraper/bb4298e7-0f8a-49f8-9476-a9065fe9a282/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X POST 'https://api.parse.bot/scraper/bb4298e7-0f8a-49f8-9476-a9065fe9a282/get_options_chain' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "symbol": "SPY"
}'
All endpoints · 3 totalclick to expand

Retrieve detailed options chain data for equities, indices, and VX futures. Returns all option contracts with full Greeks, pricing, and volume data. Supports equity symbols (SPY, AAPL), index symbols (SPX, VIX, NDX - auto-prefixed with underscore), and caret-prefixed symbols (^SPX).

Input
ParamTypeDescription
symbolrequiredstringTicker symbol. Equities: SPY, AAPL, MSFT. Indices: SPX, VIX, NDX (auto-prefixed with underscore). Also accepts ^SPX format.
Response
{
  "type": "object",
  "fields": {
    "puts": "array - List of put option objects with Greeks, pricing, and volume",
    "calls": "array - List of call option objects with Greeks, pricing, and volume",
    "symbol": "string - Original symbol input (uppercased)",
    "timestamp": "string - Data timestamp",
    "total_puts": "integer - Number of put options",
    "total_calls": "integer - Number of call options",
    "total_options": "integer - Total number of option contracts",
    "normalized_symbol": "string - Symbol as sent to API (e.g., _SPX for indices)"
  },
  "sample": {
    "data": {
      "puts": [
        {
          "iv": 0,
          "ask": 0.01,
          "bid": 0,
          "low": 0,
          "rho": 0,
          "high": 0,
          "open": 0,
          "theo": 0,
          "tick": "no_change",
          "vega": 0,
          "delta": 0,
          "gamma": 0,
          "theta": 0,
          "change": 0,
          "volume": 0,
          "ask_size": 2059,
          "bid_size": 0,
          "option_type": "Put",
          "strike_price": 400,
          "open_interest": 2530,
          "option_symbol": "SPY260501P00400000",
          "percent_change": 0,
          "prev_day_close": 0.005,
          "expiration_date": "2026-05-01",
          "last_trade_time": "2026-04-30T16:07:15",
          "last_trade_price": 0.01,
          "underlying_symbol": "SPY"
        }
      ],
      "calls": [
        {
          "iv": 0,
          "ask": 320.43,
          "bid": 320.2,
          "low": 322.88,
          "rho": 0,
          "high": 322.89,
          "open": 322.89,
          "theo": 320.35,
          "tick": "down",
          "vega": 0,
          "delta": 1,
          "gamma": 0,
          "theta": 0,
          "change": 3.35,
          "volume": 29,
          "ask_size": 12,
          "bid_size": 12,
          "option_type": "Call",
          "strike_price": 400,
          "open_interest": 153,
          "option_symbol": "SPY260501C00400000",
          "percent_change": 1.04842,
          "prev_day_close": 319.53,
          "expiration_date": "2026-05-01",
          "last_trade_time": "2026-05-01T13:45:57",
          "last_trade_price": 322.88,
          "underlying_symbol": "SPY"
        }
      ],
      "symbol": "SPY",
      "timestamp": "2026-05-02 22:18:38",
      "total_puts": 6506,
      "total_calls": 6506,
      "total_options": 13012,
      "normalized_symbol": "SPY"
    },
    "status": "success"
  }
}

About the cboe.com API

The CBOE API exposes 3 endpoints covering delayed options chain data and regulatory alerts from cboe.com. The get_options_chain endpoint returns full option contracts for equities (SPY, AAPL), indices (SPX, VIX, NDX), and caret-prefixed symbols, including all six Greeks — IV, Delta, Gamma, Theta, Vega, and Rho — alongside strike prices, expiration dates, volume, and open interest. A dedicated endpoint covers VX futures options, and a third returns short sale circuit breaker alerts under Rule 201.

Options Chain Data

The get_options_chain endpoint accepts a single symbol parameter. Equity symbols (e.g., SPY, AAPL, MSFT) are passed as-is. Index symbols like SPX, VIX, and NDX are automatically prefixed with an underscore internally, and the normalized_symbol field in the response confirms how the symbol was resolved. The response splits contracts into puts and calls arrays, each containing full Greeks (implied volatility, Delta, Gamma, Theta, Vega, Rho), bid/ask pricing, volume, and open interest. Top-level fields include total_puts, total_calls, total_options, and a timestamp indicating when the delayed data was captured.

VX Futures Options

The get_vx_futures_options endpoint covers options on CBOE Volatility Index futures contracts. Symbols follow the format VX + month code + 2-digit year — for example, VXK26 for May 2026, where K is the CME/CBOE month code for May. The response includes the same puts and calls structure with full Greeks, plus contract_month (e.g., "May") and contract_year (e.g., "2026") fields for easy display. Only active or near-term contracts carry options data; requests for expired contracts return a not-found error.

Short Sale Circuit Breaker Alerts

The get_short_sale_circuit_breaker endpoint returns all securities that triggered a short sale price test restriction under SEC Rule 201 for a given year. The year parameter is optional and accepts a 4-digit year string. Each object in the alerts array includes symbol, security_name, exchange, start_time, end_time, status, and an is_rescinded boolean. The total_alerts field gives the count for that year. A ttl field from the server indicates cache freshness.

Data Scope and Freshness

All options data is delayed, consistent with CBOE's public data publication policy. The API does not expose real-time streaming quotes or intraday tick data. Coverage spans the symbols and contract months that CBOE publishes on its public-facing options pages, including major equity ETFs, single stocks, broad indices, and VX futures.

Common use cases
  • Building an options screener that filters contracts by Delta and implied volatility across SPY, QQQ, or SPX.
  • Monitoring open interest and volume changes across all strikes for a given expiration date.
  • Calculating options Greeks-based risk metrics (Theta decay, Gamma exposure) for a portfolio of equity options.
  • Tracking VX futures options premiums across near-term contracts to analyze volatility term structure.
  • Logging short sale circuit breaker alerts by year to build a historical compliance dataset for Rule 201 events.
  • Identifying which securities triggered Rule 201 restrictions on a specific exchange, using the exchange and start_time fields.
  • Comparing put/call ratios across multiple symbols using total_puts and total_calls response fields.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 CBOE have an official developer API?+
CBOE offers a data services portal at datashop.cboe.com for licensed data products, primarily targeting institutional subscribers. The public options data this API covers is not available through a free, self-serve developer API from CBOE directly.
What Greeks does get_options_chain return for each contract?+
Each contract in the puts and calls arrays includes implied volatility (IV), Delta, Gamma, Theta, Vega, and Rho. These are returned alongside bid, ask, last price, volume, and open interest for every strike and expiration in the chain.
How do I request index options like SPX or VIX?+
Pass the index ticker without any prefix — for example, SPX or VIX. The API normalizes index symbols by prepending an underscore before resolving, and the normalized_symbol field in the response confirms the resolved form (e.g., _SPX). Caret-prefixed symbols like ^SPX are also accepted.
Are historical options chains or end-of-day snapshots available?+
Not currently. The API returns delayed intraday data for currently listed contracts. Historical end-of-day options snapshots are not exposed. You can fork this API on Parse and revise it to target a historical data endpoint if CBOE or a compatible source makes one available.
Does the API return options data for every expiration available on CBOE, including weeklies?+
The response includes all contracts published in CBOE's options chain for the requested symbol, which typically covers all listed expirations including weekly series. However, the API does not provide a separate endpoint to list available expirations before fetching the full chain. You can fork this API on Parse and revise it to add an expiration-listing endpoint to support workflows that need expiration discovery before chain retrieval.
Page content last updated . Spec covers 3 endpoints from cboe.com.
Related APIs in FinanceSee all →
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.
guba.eastmoney.com API
Access Chinese stock discussion posts and comments from Eastmoney's community platform to monitor investor sentiment, search board discussions, and retrieve detailed post information and stock board metadata. Get real-time insights into what traders are discussing about specific stocks through posts, replies, and board analytics.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
blackrock.com API
Access comprehensive BlackRock iShares ETF data to research fund performance, holdings, fees, and sector allocations, plus search and compare specific ETFs. Monitor investment details like distributions, key characteristics, and broad market indices all in one place.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
CBOE Options Chain API – Greeks & Circuit Breakers · Parse