Get Options Expiration Dates
Fetch expiration dates of options with a particular underlying security
Overview
This endpoint enables you to retrieve the expiration dates of all options in which the underlying security is provided in the request's query.
There are four required parameters that must be provided in the request's header and query:
Authorization (header). This is the authorization token from the very first token request. The value of this header must have the following format:
Bearer BQ898r9fefi
(Bearer
+ 1 space + the token).API version (path). Unless necessary, leave it at "1.0".
underlying (query). This is the ticker symbol of the option's underlying security.
Here's the final template for this API request:
Response
In response to this API request, you'll receive a list of expiration dates for options in which the underlying security was specified in the request query.
where:
Parameter | Description |
---|---|
SeriesId | This is the internal identifier of the option series to which this option belongs. |
SeriesType | This is the type of option series. Possible values: Standard, NonStandard, Binary, Flex, Undefined. |
ExpirationDate | This is the expiration date of the option. |
ExpirationType | This is the expiration type of the option. Possible values: Regular, Quarterly, Weekly, Flex, Undefined, Mini, NonStandard. |
Common Mistakes
Here are some of the common mistakes that developers make when attempting to retrieve expiration data of options with a particular underlying security.
Failing to Specify the Query Parameters
It's crucial to understand that the underlying query parameter must be indicated in the request; otherwise you'll receive the 404 status code and the following message:
The following article covers the syntax for this API request in detail.
Last updated