Get option chain
-X GET
--header 'Accept: application/json'
--header 'Authorization: Bearer {token here}'
'https://api.lime.co/securities/{symbol}/options?expiration={expiration}&series={series}'
Response example
{
"contract_size": 5,
"style": "american",
"settlement": "physical",
"chain": [
{
"symbol": "CZOO1 230818C00003000",
"type": "call",
"strike": 3
},
{
"symbol": "CZOO1 230818C00001000",
"type": "call",
"strike": 1
},
{
"symbol": "CZOO1 230818P00001000",
"type": "put",
"strike": 1
},
{
"symbol": "CZOO1 230818C00002000",
"type": "call",
"strike": 2
},
{
"symbol": "CZOO1 230818P00003000",
"type": "put",
"strike": 3
},
{
"symbol": "CZOO1 230818P00002000",
"type": "put",
"strike": 2
}
]
}
Returns option contracts for specified symbol, expiration date and series.
Request
parameter | description |
---|---|
symbol | Required. The security symbol. |
expiration | Required. Contract expiration date, formatted as yyyy-mm-dd |
series | Optional. By default the series is the same as the the security symbol |
Response
name | type | description |
---|---|---|
contract_size | number | Contract size value |
style | string | Option style. Possible values are american and european |
settlement | string | Settlement type. Possible values are physical and cash |
chain | array | Array of option contracts |
Option contract element:
name | type | description |
---|---|---|
symbol | string | Option symbol |
type | string | Option type. Possible values are call and put |
strike | number | Option strike value |