getOptionExpirations
Retrieve available expiration dates for options contracts on specific stock symbols to support trading strategy planning and position management.
Instructions
Get available expiration dates for options on an underlying symbol
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| underlying | Yes | Underlying symbol (e.g., AAPL, SPY) |
Input Schema (JSON Schema)
{
"properties": {
"underlying": {
"description": "Underlying symbol (e.g., AAPL, SPY)",
"type": "string"
}
},
"required": [
"underlying"
],
"type": "object"
}