Stock Quote and Options Chain API Endpoints - FlashAlpha Lab API
Lab API Market Data

Market Data API

Real-time stock quotes and full option chain data from the FlashAlpha Lab API, enriched with BSM Greeks and SVI-smoothed implied volatility.

The Market Data endpoints provide real-time pricing for equities and full option chains with computed Greeks. These are the foundational data feeds that power FlashAlpha’s exposure analytics.

Endpoints

Reference & Discovery Endpoints

These endpoints help you discover available symbols and option chain metadata before making detailed queries.

GET /v1/surface/{symbol}

Returns a cached volatility surface grid for the given symbol. Public endpoint — no authentication required.

Errors: 503 — Surface data is still loading, try again shortly.

GET /v1/options/{ticker}

Returns option chain metadata: available expirations and the strikes within each expiration.

{
  "symbol": "SPY",
  "expirations": [
    { "expiration": "2026-03-07", "strikes": [550.0, 555.0, 560.0, 565.0, 570.0, 575.0, 580.0] },
    { "expiration": "2026-03-14", "strikes": [550.0, 555.0, 560.0, 565.0, 570.0] }
  ],
  "expiration_count": 2,
  "total_contracts": 12
}

Errors: 404 — No options data for symbol.

GET /v1/tickers

Returns the list of ticker symbols currently tracked by the platform.

{ "tickers": ["AAPL", "AMZN", "GOOGL", "..."], "count": 8 }
GET /v1/symbols

Returns the list of symbols available for options data. Any US equity or ETF can be queried.

{ "symbols": ["SPY", "QQQ"], "count": 2, "note": "Any US equity or ETF...", "last_updated": "..." }
FlashAlpha
© FlashAlpha. All rights reserved.