Market Holidays

Market Holidays Endpoint

The Market Holiday API allows you to easily access past and future holiday calendars for all markets based on FinID.

Note

Unlike our other API endpoints, the market holidays endpoint does not support multiple FinIDs. Instead, it lists all holidays for a single FinID.

Schema

FieldFormatDescription
fin_idStringThe FinID for the market.
dateDateShows the date of the holiday for the market.
nameStringDescribes the name of the holiday.
scheduleStringDescribes if the market closes for the holiday.
is_openBooleanDisplays in true/false if the market is open for the holiday.
has_settlementBooleanDisplays in true/false if the market has settlement for the holiday.
observedBooleanDisplays in true/false if the holiday is observed.
memoStringA description or additional details about the holiday, if applicable.

Query String Parameters

Supported query string parameters are listed in the table below:

ParameterSupported ValuesDefaultDescription
fin_idValid FinIDN/ASpecify which market to show data for.
startyyyy-mm-ddCurrent dateShow holidays starting at this date
endyyyy-mm-ddOne year from current dateShow holidays until this date.

If you use a query string parameter that isn't supported, the API will ignore the invalid query string parameters and execute the ones it recognizes.

Examples

Remember to use your authentication token for all requests.

Get Holidays with FinID

https://api.tradinghours.com/v3/markets/holidays?fin_id=us.nyse

Get Holidays with MIC

https://api.tradinghours.com/v3/markets/holidays?fin_id=XNYS

Get Holidays in a Date Range

https://api.tradinghours.com/v3/markets/holidays?fin_id=us.nyse&start=2020-11-01&end=2020-11-30

Sample JSON Response

{
  "data": [
    {
      "fin_id": "US.NYSE",
      "date": "2021-09-06",
      "name": "Labor Day",
      "schedule": "Closed",
      "is_open": false,
      "has_settlement": false,
      "observed": false,
      "memo": null
    },
    {
      "fin_id": "US.NYSE",
      "date": "2021-11-25",
      "name": "Thanksgiving Day",
      "schedule": "Closed",
      "is_open": false,
      "has_settlement": false,
      "observed": false,
      "memo": null
    },
    {
      "fin_id": "US.NYSE",
      "date": "2021-11-26",
      "name": "Market Holiday",
      "schedule": "Partial",
      "is_open": true,
      "has_settlement": true,
      "observed": false,
      "memo": null
    },
    {
      "fin_id": "US.NYSE",
      "date": "2021-12-24",
      "name": "Christmas",
      "schedule": "Closed",
      "is_open": false,
      "has_settlement": false,
      "observed": true,
      "memo": null
    },
    {
      "fin_id": "US.NYSE",
      "date": "2022-01-17",
      "name": "Birthday of Martin Luther King, Jr",
      "schedule": "Closed",
      "is_open": false,
      "has_settlement": false,
      "observed": false,
      "memo": null
    },
    {
      "fin_id": "US.NYSE",
      "date": "2022-02-21",
      "name": "Washington's Birthday",
      "schedule": "Closed",
      "is_open": false,
      "has_settlement": false,
      "observed": false,
      "memo": null
    },
    {
      "fin_id": "US.NYSE",
      "date": "2022-04-15",
      "name": "Good Friday",
      "schedule": "Closed",
      "is_open": false,
      "has_settlement": false,
      "observed": false,
      "memo": null
    },
    {
      "fin_id": "US.NYSE",
      "date": "2022-05-30",
      "name": "Memorial Day",
      "schedule": "Closed",
      "is_open": false,
      "has_settlement": false,
      "observed": false,
      "memo": null
    },
    {
      "fin_id": "US.NYSE",
      "date": "2022-07-04",
      "name": "Independence Day",
      "schedule": "Closed",
      "is_open": false,
      "has_settlement": false,
      "observed": false,
      "memo": null
    }
  ],
  "meta": {
    "start": "2021-07-18",
    "end": "2022-07-18"
  }
}
Last Updated: