Overview
The Option Chains endpoints provide access to real-time options data including available expiration dates, complete option chains with Greeks, and market pricing.Get Available Expirations
Stock ticker symbol (e.g., “AAPL”, “SPY”, “TSLA”)
Response
Ticker symbol in uppercase
Current spot price of the underlying asset
Current risk-free interest rate used for calculations
List of all available expiration dates in YYYY-MM-DD format
Example Response
This endpoint is ultra-fast as it only queries the expiration list without downloading full option chains.
Get Option Chain
Stock ticker symbol
Expiration date in YYYY-MM-DD format. If not provided, uses the closest expiration >= 7 days out.
Response
Ticker symbol in uppercase
Current spot price of the underlying
Risk-free rate used for Greeks calculations
The expiration date used for this chain
Contains
calls and puts arraysOption Contract Fields
Each option contract (call or put) includes:Strike price of the option
Current bid price
Current ask price
Mid price calculated as (bid + ask) / 2. Falls back to lastPrice if bid or ask is 0.
Last traded price
Trading volume
Open interest
Implied volatility (IV)
Days to expiration
Option type: “call” or “put”
Expiration date in ISO format
Greeks (Black-Scholes Calculated)
Delta - Rate of change of option price with respect to underlying price
Gamma - Rate of change of delta
Theta - Time decay per day
Vega - Sensitivity to volatility changes
Example Response
Error Responses
No options found for the ticker
Internal server error during data fetching
Implementation Notes
Greeks Calculation: All Greeks (delta, gamma, theta, vega) are calculated using the Black-Scholes-Merton model with:
- Current spot price
- Strike price
- Time to expiration (in years)
- Risk-free rate (currently 5%)
- Implied volatility from market data
- Dividend yield (q) = 0.0
Use Cases
- Strategy Building: Fetch option chains to build multi-leg strategies
- Greeks Analysis: Access calculated Greeks without separate computation
- Liquidity Screening: Filter by volume and open interest
- IV Analysis: Compare implied volatility across strikes