Australian Securities Exchange holiday calendar.
The ASX calendar covers the Australian Securities Exchange equity market in Sydney. It reflects official Australian national public holidays plus state-level holidays observed by ASX, sourced from ASX Settlement Notices and ASX T24 Trading Calendars. ASX observes early closes on Christmas Eve (14:10 AEDT) and New Year's Eve (14:10 AEDT). ANZAC Day (25 April) is observed as a full-close holiday.
Official ASX non-trading days are dynamically retrieved via the API.
For a comprehensive list of upcoming holidays, use the /v1/holidays/range or /v1/next_n_holidays endpoints with calendar=ASX.
GET /v1/day_status?calendar=ASX&date=2025-04-25GET /v1/is_holiday?calendar=ASX&date=2025-04-25ASX closes at 14:10 AEDT on Christmas Eve.
GET /v1/day_status?calendar=ASX&date=2025-12-24From Wednesday 16 Apr 2025: skips Good Friday (Apr 18), Easter Saturday (Apr 19), Easter Monday (Apr 21) → returns Tuesday 22 Apr 2025.
GET /v1/next_business_day?calendar=ASX&date=2025-04-16GET /v1/previous_business_day?calendar=ASX&date=2025-04-22T+1 from Christmas Eve 24 Dec 2025 (early close): skips Christmas (Dec 25), Boxing Day (Dec 26), weekend → settles Monday 29 Dec 2025.
GET /v1/settlement_date?calendar=ASX&date=2025-12-24&tplus=1=WEBSERVICE("https://fincalapi.com/v1/holidays/range?calendar=ASX&months_ahead=12&format=csv&api_key=fincal_live_YOUR_KEY_HERE")Security note: The api_key parameter works but your key appears in server logs and Excel's formula bar. For better security, use Power Query (Excel 2016+) with the Authorization header instead.
let
ApiKey = "fincal_live_YOUR_KEY_HERE",
Source = Web.Contents(
"https://fincalapi.com/v1/holidays/range?calendar=ASX&months_ahead=12&format=csv",
[Headers = [Authorization = "Bearer " & ApiKey]]
),
Result = Csv.Document(Source, [Delimiter=",", Encoding=65001])
in
ResultFunction GetASXHolidays() As String
Dim http As Object
Set http = CreateObject("MSXML2.XMLHTTP")
http.Open "GET", "https://fincalapi.com/v1/holidays/range?calendar=ASX&months_ahead=12&format=json", False
http.setRequestHeader "Authorization", "Bearer fincal_live_YOUR_KEY_HERE"
http.Send
GetASXHolidays = http.responseText
End Function=IMPORTDATA("https://fincalapi.com/v1/holidays/range?calendar=ASX&months_ahead=12&format=csv&api_key=fincal_live_YOUR_KEY_HERE")import requests
API_KEY = "fincal_live_YOUR_KEY_HERE"
resp = requests.get(
"https://fincalapi.com/v1/day_status",
params={"calendar": "ASX", "date": "2025-04-25"},
headers={"Authorization": f"Bearer {API_KEY}"}
)
print(resp.json())curl -H "Authorization: Bearer fincal_live_YOUR_KEY_HERE" \
"https://fincalapi.com/v1/day_status?calendar=ASX&date=2025-04-25"