Simple REST API with JSON responses. No auth required for the free sample.
Base URL:
https://optionsdata.pro
Get a free sample day of data (2024-01-02, first 1000 rows)
Parameters: No parameters required
Dataset metadata and statistics
Parameters: No parameters required
Get full day data for a specific date (Pro+)
Parameters: date: YYYY-MM-DD, ?ticker=, ?limit=, ?offset=
{
"date": "2024-01-02",
"rows": 1000,
"columns": ["ticker", "volume", "open", "close", "high", "low", "window_start", "transactions"],
"data": [
{
"ticker": "O:A240119C00110000",
"volume": 45,
"open": 28.85,
"close": 29.00,
"high": 29.00,
"low": 28.85,
"window_start": "1704205980000000000",
"transactions": 6
}
]
}
Each row contains 1-minute OHLCV bar data for US equity options.
| Column | Type | Description |
|---|---|---|
| ticker | string | Option ticker (e.g., O:A240119C00110000) |
| volume | integer | Trading volume in contracts |
| open | float | Opening price |
| close | float | Closing price |
| high | float | Highest price in the bar |
| low | float | Lowest price in the bar |
| window_start | integer | Unix timestamp in nanoseconds |
| transactions | integer | Number of transactions |