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": []
}
]
}Documentation Index
Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt
Use this file to discover all available pages before exploring further.
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": []
}
]
}