Free Financial Market Holiday API Financial Market Data API REST API Provides accurate and timely global financial market holiday data API interface, covering major exchanges including A-shares, US stocks, and Hong Kong stocks. Featuring reliable data sources, timely updates, easy integration via RESTful API, and a free trial available.

Please select

Market Holidays

GET
/symbol/holidays

Response Parameters

codenumber
Response code
msgstring
Response description
dataarray(object)
Response result
cstring
Market code
rstring
Market country name
tzstring
Market timezone
etstring
Intraday trading hours
vstring
Holiday dates within the year
eystring
Year

Code Examples

import requests

url = "https://api.itick.io/symbol/holidays"

headers = {
"accept": "application/json"
"token": "Your Token"
}

response = requests.get(url, headers=headers)

print(response.text)

Query URL

GET
https://api.itick.io/symbol/holidays

Response Result

{
  "code": 0,
  "msg": "ok",
  "data": [
    {
      "c": "AU",
      "r": "Australia",
      "v": "[\"2025-01-01\", \"2025-01-27\", \"2025-04-18\", \"2025-04-21\", \"2025-04-25\", \"2025-06-09\", \"2025-12-25\", \"2025-12-26\"]",
      "et": "09:30 - 16:00",
      "ey": "2025",
      "vr": null,
      "tz": 10
    }
  ]
}