The REST structure of the Option Chain API simplifies integration and allows you to build platforms where your users can track all options for the tickers they are interested in, without putting a heavy load on you on the data engineering side. Option chain data is ideal for options analytics, derivatives desks, trading UIs, risk systems, and quantitative research that require up-to-date option market structure.
The API is suitable for fintech developers, algo traders, brokers, and enterprise applications that need programmatic access to options market data.
– Display full option chains with expirations and strikes on trading UIs
– Power options screeners (moneyness, expiry, IV overlays) for traders and analysts
– Monitor volume and open interest to identify liquidity and unusual activity
– Feed risk and margin systems with up-to-date option quotes and timestamps
– Backtest option strategies using historical chain snapshots (when available)
- Calls & Puts – Separate call and put legs with full contract identifiers
- Expiration & Strike Coverage – Multiple expirations and strike levels per ticker
- Quote Details – Last price, bid, ask, and last traded timestamp for each contract
- Market Activity – Volume and open interest fields to measure liquidity and flow
- Chain-Level Output – Returns a structured chain grouped by expiration with date/timestamp metadata
Access today by getting your API key on the Finnworlds website.
Looking for academic or non-profit use? Send us an email to start the conversation.
- JSON REST API
- Excel CSV download
- PDF reports
- Email link
https://api.finnworlds.com/api/v1/optionchain?key=APIKEY&ticker=AAPL
{
"status": {
"code": 200,
"message": "OK",
"details": ""
},
"result": {
"ticker": "AAPL",
"options": [
{
"expiration_date": "2025-08-29",
"date": "2025-08-27 13:25:47",
"call": [
{
"contract": "AAPL250829C00110000",
"last_traded": "2025-08-27 12:58:03",
"strike": "110",
"last_price": "119.42",
"bid": "0",
"ask": "0",
"volume": "3",
"open_interest": "7"
}
]
},
{
"expiration_date": "2025-08-29",
"date": "2025-08-27 13:25:47",
"put": [
{
"contract": "AAPL250829P00325000",
"last_traded": "2025-08-27 12:45:19",
"strike": "325",
"last_price": "94.15",
"bid": "0",
"ask": "0",
"volume": "5",
"open_interest": "0"
}
]
}
]
}
}
Need help, have questions? Get in touch with Support.
Use of the Finnworlds website, services like API and database are subject to the Finnworlds Terms & Conditions.