< API Reference
GET
/allaccess/reference/trading-days?start_date={start_date}&end_date={end_date}
Obtain future and historical market trading days based off the Cboe trading schedule. This method includes a start date and end date parameter to allow you to adjust the range.

Example URI

Live (1 points)

https://api.livevol.com/v1/live/allaccess/reference/trading-days?start_date=2019-01-01&end_date=2019-06-30

Delayed (1 points)

https://api.livevol.com/v1/delayed/allaccess/reference/trading-days?start_date=2019-01-01&end_date=2019-06-30

Request Information

URI Parameters

Name Description Type Additional information
start_date

Start date in YYYY-MM-DD format. Optional.

string

Constraint: value should be less than or equal to end_date value

Date in yyyy-MM-dd format. (i.e. 2019-01-18)

Default value is: 2003-01-01

end_date

End date in YYYY-MM-DD format. Optional.

string

Constraint: value should be greater than or equal to start_date value

Date in yyyy-MM-dd format. (i.e. 2019-01-18)

Default value is: 2100-01-01

Response Information

Resource Description

Collection of string

Response Formats

application/json, text/json

Sample:
[
  "2016-06-10",
  "2016-06-13"
]

application/xml, text/xml

Sample:
<trading_days xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <day>2016-06-10</day>
  <day>2016-06-13</day>
</trading_days>