Availability Schedule
List Holiday Categories
List the holiday categories (countries and regions) available for subscription, with localized names and identifiers.
GET
List holiday categories
Last modified on April 29, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List the holiday categories (countries and regions) available for subscription, with localized names and identifiers.
curl --request GET \
--url https://api.zeeg.me/v2/holidays/categories \
--header 'Authorization: Bearer <token>'{
"collection": [
{
"key": "DE",
"name": "Germany",
"regions": [
{
"key": "DE-BY",
"name": "Bavaria"
},
{
"key": "DE-BE",
"name": "Berlin"
}
]
},
{
"key": "FR",
"name": "France",
"regions": []
}
]
}Optional case-insensitive substring filter on country name.
100"germany"
OK
Supported countries with their regions.
Hide child attributes
curl --request GET \
--url https://api.zeeg.me/v2/holidays/categories \
--header 'Authorization: Bearer <token>'{
"collection": [
{
"key": "DE",
"name": "Germany",
"regions": [
{
"key": "DE-BY",
"name": "Bavaria"
},
{
"key": "DE-BE",
"name": "Berlin"
}
]
},
{
"key": "FR",
"name": "France",
"regions": []
}
]
}