Skip to main content
GET
/
stocks
/
markets
/
hours
Get Trading Hours
curl --request GET \
  --url https://api.tradewatch.io/stocks/markets/hours \
  --header 'api-key: <api-key>'
[
  {
    "mic": "<string>",
    "date": "<string>",
    "day_of_week": "<string>",
    "is_early_close": true,
    "open_time": "2023-11-07T05:31:56Z",
    "close_time": "2023-11-07T05:31:56Z",
    "holiday_name": "Day Before Labour Day"
  }
]

Authorizations

api-key
string
header
required

Authentication via API key header

Query Parameters

mic
string

Optional list of comma separated MIC codes for which market to show data for. All market will be included if MIC code is not specified.

start
string<date>
required

Show holidays starting at this date.

end
string<date>
required

Show holidays until this date.

Response

Successful Response

mic
string
required

Market Identifier Code (ISO 10383)

Example:

"XSTO"

date
string
required

Date of the trading session (YYYY-MM-DD)

Example:

"2024-04-30"

day_of_week
string
required

Day of the week

Example:

"Tuesday"

is_early_close
boolean
required

Whether the market closes early on this day

Example:

true

open_time
string<date-time>
required

Opening time for the day

Example:

"2024-04-30T09:00:00+02:00"

close_time
string<date-time>
required

Closing time for the day

Example:

"2024-04-30T13:00:00+02:00"

holiday_name
string | null
required

Name of the holiday if applicable

Example:

"Day Before Labour Day"