Returns a list of end of day pricing information for all option contracts currently associated with the ticker.
Name | Type | Description | Notes |
---|---|---|---|
symbol | str | The equities ticker symbol, corresponding to the underlying security. | |
page_size | int | The number of results to return | [optional] [default to 250] |
date | object | The date to get pricing data for. Defaults to today in Eastern time zone. | [optional] |
type | str | The option contract type. | [optional] |
strike | float | The strike price of the option contract. This will return options contracts with strike price equal to this price. | [optional] |
strike_greater_than | float | The strike price of the option contract. This will return options contracts with strike prices greater than this price. | [optional] |
strike_less_than | float | The strike price of the option contract. This will return options contracts with strike prices less than this price. | [optional] |
include_related_symbols | bool | Include related symbols that end in a 1 or 2 because of a corporate action. | [optional] |
next_page | str | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
next_page | str | The token required to request the next page of the data. If null, no further results are available. |
prices | list[OptionsPriceEod] | The contracts pricing for this security. |