GET ./holidays/global

Tags: simple query

The method also supports additional filtering through query parameters. The query parameters are processed by the api_query library. The supported query parameters include:

GET parameters

NameValue TypeValidationDetails
holIDstringOptionalFilter holidays by their ID.
holCountryIDintOptionalFilter holidays by Country ID.

Output example

{
"meta": {
"countTotal": "2",
"countData": "2",
"countOffset": "0"
},
"data": [
{
"holID": "lwWrpQ",
"holName": "1 Mai",
"holCountryID": "1",
"holDate": "2024-03-01",
"holCountryCod": "RO"
},
{
"holID": "4O52ya",
"holName": "Paste",
"holCountryID": "1",
"holDate": "2024-03-02",
"holCountryCod": "RO"
}
]
}