Preview the upcoming holidays in a given category before creating a subscription, so users can see exactly which dates will be blocked.
curl --request GET \
--url https://api.zeeg.me/v2/holidays/preview \
--header 'Authorization: Bearer <token>'{
"collection": [
{
"key": "new-year",
"name": "New Year's Day",
"date": "2026-01-01",
"nextDate": "2027-01-01"
},
{
"key": "christmas-day",
"name": "Christmas Day",
"date": "2026-12-25",
"nextDate": "2027-12-25"
}
]
}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.
Country or region key from /holidays/categories (e.g. DE, DE-BY).
30"DE"
Restrict the preview to a single calendar year. Omit for a multi-year preview that surfaces each holiday's next occurrence.
2000 <= x <= 21002026
OK
Holidays that fall in the requested category.
Hide child attributes
curl --request GET \
--url https://api.zeeg.me/v2/holidays/preview \
--header 'Authorization: Bearer <token>'{
"collection": [
{
"key": "new-year",
"name": "New Year's Day",
"date": "2026-01-01",
"nextDate": "2027-01-01"
},
{
"key": "christmas-day",
"name": "Christmas Day",
"date": "2026-12-25",
"nextDate": "2027-12-25"
}
]
}