APIs

This page contains all the APIs available on seeholidays.com, you can use them in your own App.


GET

/api/is-holiday

This API will tell you if a given date is a holiday in a given region.

Parameters
NameTypeDescription
regionNamestringThe name of the region, e.g. "New South Wales"
datestringThe date in YYYY-MM-DD format, e.g. "2025-12-25"
Example

/api/is-holiday?regionName=Victoria&date=2025-12-25

Response
{
  "isWorkingDay": false,
  "name": "Christmas Day"
}