optionsData_historicalOptions
Retrieve historical options chain data for specific stocks by providing a symbol and date, with output in JSON or CSV formats.
Instructions
Fetches historical options chain data. Premium endpoint.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datatype | No | Data format for the response. | json |
date | No | Specific date (YYYY-MM-DD) for historical data. | |
symbol | Yes | The underlying stock symbol (e.g., "AAPL"). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Parameters for fetching historical options chain data (Premium).",
"properties": {
"datatype": {
"default": "json",
"description": "Data format for the response.",
"enum": [
"json",
"csv"
],
"type": "string"
},
"date": {
"description": "Specific date (YYYY-MM-DD) for historical data.",
"type": "string"
},
"symbol": {
"description": "The underlying stock symbol (e.g., \"AAPL\").",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}