Get public holidays and school holidays for a specific date, based on a `geoId`.
This API determines whether an official public holiday or school holidays are taking place on a specified date at a specified location. The required parameters are `api_key` and `geoId`. The `date` parameter is optional - if it is not specified, today's date is automatically used. In addition, the output can be configured using further parameters. The parameters are passed as query parameters in the URL. Alternatively, authorisation can also take place in the header.
The available Geo-IDs can be found in the API: GeoTree/ISO
Opens the interactive API documentation with Swagger, where you can test and explore API endpoints.
To retrieve the data, use the following URL. Please pay attention to upper case lower case.
https://feiertagskalender.ch/api/CheckDate/GeoId/index.php
With the following variables you can complete the query and control the API results.
Parameter | Explanation | Examples |
---|---|---|
api_key required |
Your API Key | api_key=abc-123-def-456 |
geoId required |
Geo-ID of the desired locality. The Geo-ID of Feiertagskalender.ch | geoid=3055 |
date | The date to check |
date=2025-06-01 |
class or klasse |
Scope of the data Variants: |
klasse=5 |
charset | The desired coding of the response Variants: |
charset=iso-8859-1 |
format | The desired output format Variants: |
format=xml |
date_format | The desired date format for the response. Default: `Y-m-d` (e.g., 2025-12-31)
Variants: |
date_format=d.m.Y |
hl | Desired language of the output Variants: |
hl=en |
The contents of the API responses result from:
- the data you have subscribed to (countries, public holidays, school holidays, calendar years)
- the officially known data of the legislators
- the availability based on our research (ACTUAL situation of our database)
Please note that the output in CSV format differs.
Array | Explanation | Example | ||||
---|---|---|---|---|---|---|
interface | Version of the API | |||||
source: | href | URL to the data source (website) | ||||
description | Name of the data source | |||||
copyright | href | URL to the copyright holder (website) | ||||
description | Designation of the copyright holder | |||||
apiName | Identification of the API | CheckDate/GeoId | ||||
apiStatus | description | Designation of the API status. For variants, see the Error messages | active | |||
date | Date of the data export | 01.05.2025 | ||||
request: | geoId | Geo-ID according to request | 410 | |||
date | Date of the data in the output | 2019-02-28 | ||||
charset | Font coding of the output | utf-8 | ||||
format | Output data format | json | ||||
date_format | Output date format | d.m.Y | ||||
hl | Language of issue, according to request | en | ||||
results | status | description | Output status. For variants, see the Error messages | ok | ||
location | description | Designation of the geographical unit | Zurich | |||
type | Designation of the type of geographical unit | Canton | ||||
geoId | Geo-ID of the geographical unit. | 2872 | ||||
iso | ISO country code, 2 digits | CH | ||||
iso-3166-2 | Region code according to ISO 3166-2 | CH-ZH | ||||
note | Special notes | |||||
date_status | Day status | |||||
date | Date | 2019-02-28 | ||||
total_population | Total number of inhabitants | 1502167 | ||||
public_holiday_population | Number of inhabitants with public holiday | 0 | ||||
public_holiday_percent | Percent Inhabitants with public holiday | 0 | ||||
public_holiday_description | Designation of the public holiday | |||||
school_holiday_population | Number of inhabitants with school holidays | 501752 | ||||
school_holiday_percent | Percent Inhabitants with school holidays | 33.4018787524955 | ||||
school_holiday_description | Designation school holidays | Sportferien | ||||
sum_population | Total number of inhabitants affected | 501752 | ||||
percent_population | Percentage of inhabitants affected | 33.4018787524955 |
URL:
https://www.feiertagskalender.ch/api/CheckDate/GeoId/index.php?api_key=YOUR_API_KEY&geoid=3055&date=2025-12-25
Response from the API:
{ "interface": "fcal API 2.02", "source": { "href": "https://feiertagskalender.ch", "description": "feiertagskalender.ch" }, "copyright": { "href": "https://psc.ch", "description": "psc Peter Schuetz Informatik-Dienstleistungen, CH Arch" }, "apiName": "CheckDate/GeoId", "apiStatus": { "description": "active" }, "date": "2025-02-25", "request": { "geoId": "3055", "date": "2025-12-25", "charset": "utf-8", "format": "json", "date_format": "Y-m-d", "hl": "de" }, "results": { "status": { "description": "ok" }, "location": { "description": "Zürich", "type": "Stadt", "geoId": "3055", "iso": "CH", "iso-3166-2": "CH-ZH", "note": "", "date_status": { "date": "2025-12-25", "total_population": 433989, "public_holiday_population": 433989, "public_holiday_percent": 100, "public_holiday_description": "Weihnachten", "school_holiday_population": 0, "school_holiday_percent": 0, "school_holiday_description": null, "sum_population": 433989, "sum_percent": 100 } } } }
URL:
https://www.feiertagskalender.ch/api/CheckDate/GeoId/index.php?api_key=YOUR_API_KEY&geoid=3055&date=2025-12-25&format=xml
Response from the API:
<fcal_api> <interface>fcal API 2.01</interface> <source> <href>https://feiertagskalender.ch</href> <description>feiertagskalender.ch</description> </source> <copyright> <href>https://psc.ch</href> <description>psc Peter Schuetz Informatik-Dienstleistungen, CH Bern</description> </copyright> <apiStatus> <description>active</description> </apiStatus> <apiName>CheckDate/GeoId</apiName> <date>2025-02-25</date> <request> <geoId>3055</geoId> <date>2025-12-25</date> <charset>utf-8</charset> <format>xml</format> <date_format>Y-m-d</date_format> <hl>de</hl> </request> <results> <status> <description>ok</description> </status> <location> <description>Zürich</description> <type>Stadt</type> <geoId>3055</geoId> <iso>CH</iso> <iso-3166-2>CH-ZH</iso-3166-2> <note></note> <date_status> <date>2025-12-25</date> <total_population>433989</total_population> <public_holiday_population>433989</public_holiday_population> <public_holiday_percent>100</public_holiday_percent> <public_holiday_description>Weihnachten</public_holiday_description> <school_holiday_population>0</school_holiday_population> <school_holiday_percent>0</school_holiday_percent> <school_holiday_description></school_holiday_description> <sum_population>433989</sum_population> <sum_percent>100</sum_percent> </date_status> </location> </results> </fcal_api>
URL:
https://www.feiertagskalender.ch/api/CheckDate/GeoId/index.php?api_key=YOUR_API_KEY&geoid=3055&date=2025-12-25&format=csv
Response from the API:
"location";"geoId";"iso";"iso-3166-2";"date";"total_population";"public_holiday_population";"public_holiday_percent";"public_holiday_description";"school_holiday_population";"school_holiday_percent";"school_holiday_description";"sum_population";"sum_percent" "Zürich";"3055";"CH";"CH-ZH";"2025-12-25";"433989";"433989";"100";"Weihnachten";"0";"0";"";"433989";"100"
Output location | Error message | Explanation |
---|---|---|
results: status: | ||
results: status: description | not subscribed | You have not subscribed to the desired data. |
results: status: description | unknown location | The requested Geo-ID is not known. |
apiStatus | ||
apiStatus: description | invalid usage | The use of this API is not enabled for this user. |
apiStatus: description | invalid key | Invalid API key. |
apiStatus: description | invalid referer | Invalid access. Links from web pages (front-ends) are not allowed. |
apiStatus: description | inactive | The API has not yet been activated for use. |
apiStatus: description | expired | The period of use according to the contract has expired. |