Get option series
-X GET
--header 'Accept: application/json'
--header 'Authorization: Bearer {token here}'
'https://api.lime.co/securities/{symbol}/options/series'
Response example
[
{
"series": "CZOO1",
"expirations": [
"2023-08-18"
],
"contract_size": 5
},
{
"series": "CZOO",
"expirations": [
"2023-07-21",
"2023-08-18",
"2023-11-17",
"2024-02-16"
],
"contract_size": 100
}
]
Returns an array of option series by the specified underlying security's symbol. Contains at least one element which is the default series. Option Series is a specific set of calls or puts on the same underlying security, with the same strike price and expiration date. For the most part there is just one series name that matches the symbol but in some cases related to corporate actions on the underlying security additional series are issued.
Request
parameter | description |
---|---|
symbol | Required. The security symbol |
Response
name | type | description |
---|---|---|
series | string | Option series |
expirations | array | Array of expiration dates formatted as yyyy-mm-dd |
contract_size | number | Contract size value |