latestSwagger 2.02026-08-12187723.0 MB

c4a12725cdb5

reference_data

Exchanges schedule

The exchanges schedule endpoint provides detailed information about various stock exchanges, including their trading hours and operational days. This data is essential for users who need to know when specific exchanges are open for trading, allowing them to plan their activities around the availability of these markets.

get/exchange_schedule

Query parameters

mic_namestring

Filter by exchange name

mic_codestring

Filter by market identifier code (MIC) under ISO 10383 standard

countrystring

Filter by country name or alpha code, e.g., United States or US

datestring
<p> If a date is provided, the API returns the schedule for the specified date; otherwise, it returns the default (common) schedule. </p> The date can be specified in one of the following formats: <ul> <li>An exact date (e.g., <code>2021-10-27</code>)</li> <li>A human-readable keyword: <code>today</code> or <code>yesterday</code></li> <li>A full datetime string in UTC (e.g., <code>2025-04-11T20:00:00</code>) to retrieve the schedule corresponding to the day in the specified time.</li> </ul> When using a datetime value, the resulting schedule will correspond to the local calendar day at the specified time. For example, <code>2025-04-11T20:00:00 UTC</code> corresponds to: <ul> <li><code>2025-04-11</code> in the <code>America/New_York</code> timezone</li> <li><code>2025-04-12</code> in the <code>Australia/Sydney</code> timezone</li> </ul>

Response

Example response

{
  "data": [
    {
      "title": "NASDAQ/NGS (Global Select Market)",
      "name": "NASDAQ",
      "code": "XNYS",
      "country": "United States",
      "time_zone": "America/New_York",
      "sessions": [
        {
          "open_time": "04:00:00",
          "close_time": "09:30:00",
          "session_name": "Pre market",
          "session_type": "pre"
        }
      ]
    }
  ]
}