< API Reference
GET
/allaccess/reference/options?date={date}&symbol={symbol}
Get options list for specified date

Example URI

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

Request Information

URI Parameters

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

Response Information

Resource Description

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

Response Formats

application/json, text/json

Sample:
[
  {
    "root": "MSFT",
    "expiry": "2017-03-20",
    "strike": 14.0,
    "type": "C"
  },
  {
    "root": "MSFT",
    "expiry": "2017-03-20",
    "strike": 20.5,
    "type": "P"
  }
]

application/xml, text/xml

Sample:
<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>