Returns a list of all securities that have options listed and are tradable on a US market exchange. Useful to retrieve the entire universe.
Name | Type | Description | Notes |
---|---|---|---|
symbol | String | The option symbol, corresponding to the underlying security. | |
type | String | The option contract type. | [optional] [enum: call, put] |
strike | BigDecimal | The strike price of the option contract. This will return options contracts with strike price equal to this price. | [optional] |
strikeGreaterThan | BigDecimal | The strike price of the option contract. This will return options contracts with strike prices greater than this price. | [optional] |
strikeLessThan | BigDecimal | The strike price of the option contract. This will return options contracts with strike prices less than this price. | [optional] |
expiration | String | The expiration date of the option contract. This will return options contracts with expiration dates on this date. | [optional] |
expirationAfter | String | The expiration date of the option contract. This will return options contracts with expiration dates after this date. | [optional] |
expirationBefore | String | The expiration date of the option contract. This will return options contracts with expiration dates before this date. | [optional] |
source | String | Realtime or 15-minute delayed contracts. | [optional] [enum: realtime, delayed] |
includeRelatedSymbols | Boolean | Include related symbols that end in a 1 or 2 because of a corporate action. | [optional] |
Name | Type | Description |
---|---|---|
options | List | A list of options contracts with the given symbol |
Name | Type | Description |
---|---|---|
code | String | The Intrinio Code for the Option. |
ticker | String | The ticker symbol of the Security for the Option. |
expiration | LocalDate | The date on which the Option expires. The Option becomes invalid after this date and cannot be exercised. |
strike | BigDecimal | The strike price is the fixed price at which a derivative can be exercised, and refers to the price of the derivative's underlying asset. In a call option, the strike price is the price at which the option holder can purchase the underlying security. For a put option, the strike price is the price at which the option holder can sell the underlying security. |
type | TypeEnum | The type of Option (put or call). |