PUBLIC
HISTORICAL
Historical Options Data — Coverage & Supported Tickers
Live list of every ticker with historical coverage in the FlashAlpha dataset, with date ranges and data-quality counts. Pulled directly from GET /v1/tickers at render time. No authentication required.
Currently Covered Tickers
| Symbol | First date | Last date | Healthy days | Total days | Updated |
|---|---|---|---|---|---|
| SPY | 2018-04-16 |
2026-04-02 |
1,972 | 2,909 | — |
(Coverage table fell back to last-known snapshot — live /v1/tickers was unreachable at render time.)
Want a symbol that's not listed? Email [email protected] with your ticker and target window. Backfills typically take <48h for liquid US equities/ETFs, longer for international or low-volume names.
Endpoint
Host:
historical.flashalpha.com
Auth: none
Tier: any
Parameters
| Name | In | Required | Description |
|---|---|---|---|
symbol | query | no | Filter to a single ticker (returns single object, not wrapped). 404 no_coverage if never backfilled. |
curl https://historical.flashalpha.com/v1/tickers
Response Schema
{
"count": 1,
"tickers": [
{
"symbol": "SPY",
"coverage": {
"first": "2018-04-16",
"last": "2026-04-02",
"total_days": 2909,
"healthy_days": 1972
},
"tables": {
"stocks_days": 2009,
"options_days": 1972,
"option_eod_days": 2006,
"svi_days": 1972
},
"gaps": {
"missing_eod": 3,
"missing_svi": 36,
"uncovered_calendar": 3
},
"updated_at": "2026-04-14T07:07:36"
}
]
}
| Field | Meaning |
|---|---|
coverage.first / coverage.last | Date range of fully healthy days (intersection of stocks ∩ options ∩ option_eod ∩ svi_daily) |
coverage.healthy_days | Trading days on which every downstream table has data |
tables.*_days | Per-source day counts — debug signal when something is behind |
gaps.missing_eod | Days in stocks without option_eod (usually transient ThetaData misses; self-heal on next pipeline run) |
gaps.missing_svi | Days in option_eod without an SVI fit |
gaps.uncovered_calendar | NYSE trading days never pulled at all (genuine holidays — e.g. 2018-12-05 Bush funeral, 2025-01-09 Carter funeral) |
updated_at | UTC timestamp of the last pipeline quality-report run |
Use This Coverage With
- Historical GEX — gamma exposure by strike, replayable at any minute
- Historical VRP — leak-free volatility risk premium percentiles
- Historical Max Pain — pain curve and pin probability
- Historical Stock Summary — composite snapshot (price, IV, exposure, macro)
- Historical API overview →