getOptionStrikes
Retrieve available strike prices for options contracts on a specific stock or ETF symbol. Filter results by expiration date to find suitable trading opportunities.
Instructions
Get available strike prices for options on an underlying symbol
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| underlying | Yes | Underlying symbol (e.g., AAPL, SPY) | |
| expiration | No | Expiration date filter in YYYY-MM-DD format (optional) |
Input Schema (JSON Schema)
{
"properties": {
"expiration": {
"description": "Expiration date filter in YYYY-MM-DD format (optional)",
"type": "string"
},
"underlying": {
"description": "Underlying symbol (e.g., AAPL, SPY)",
"type": "string"
}
},
"required": [
"underlying"
],
"type": "object"
}