/allaccess/reference/options?date={date}&symbol={symbol}
Live (1 points)
https://api.livevol.com/v1/live/allaccess/reference/options?date=2019-01-18&symbol=AAPL
Delayed (1 points)
https://api.livevol.com/v1/delayed/allaccess/reference/options?date=2019-01-18&symbol=AAPL
Name | Description | Type | Additional information |
---|---|---|---|
date | string |
Required Date in yyyy-MM-dd format. (i.e. 2019-01-18) |
|
symbol |
Symbol of the company |
string |
Required |
Collection of Option
Name | Description | Type | Additional information |
---|---|---|---|
root |
Root name of option |
string |
None |
expiry |
Expiration date for option, date is represented as YYYY-MM-DD |
string |
None |
strike |
Strike of option |
decimal number |
None |
type |
Type of option |
string |
None |
[
{
"root": "MSFT",
"expiry": "2017-03-20",
"strike": 14.0,
"type": "C"
},
{
"root": "MSFT",
"expiry": "2017-03-20",
"strike": 20.5,
"type": "P"
}
]
<options xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<option>
<expiry>2017-03-20</expiry>
<root>MSFT</root>
<strike>14</strike>
<type>C</type>
</option>
<option>
<expiry>2017-03-20</expiry>
<root>MSFT</root>
<strike>20.5</strike>
<type>P</type>
</option>
</options>