Calendar #

The calendar API serves the full list of market days from 1970 to 2029. It can also be queried by specifying a start and/or end time to narrow down the results. In addition to the dates, the response also contains the specific open and close times for the market days, taking into account early closures.


The Calendar Object #

Sample Object #

{
        "date": "2022-06-15",
        "open": "09:30",
        "close": "16:00",
        "session_open": "0400",
        "session_close": "2000"
}

Attributes #

Attribute Type Notes
date string Date string in YYYY-MM-DD format
open string The time the market opens at on this date in HH:MM format
close string The time the market closes at on this date in HH:MM format
session_open string The time the extended market opens at on this date in HH:MM format
session_close string The time the extended market closes on this date in HHMM format

Retrieving the Market Calendar #

GET /v1/calendar

Request #

Query Parameters #

Attribute Type Requirement Notes
start string/timestamp
Optional
The first date to retrieve data for (inclusive) in YYYY-MM-DD format
end string/timestamp
Optional
The last date to retrieve data for (inclusive) in YYYY-MM-DD format

Response #

The calendar object

 

Edit Edit this page