Skip to main content
GET
/
holidays
/
subscriptions
List holiday subscriptions
curl --request GET \
  --url https://api.zeeg.me/v2/holidays/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "collection": [
    {
      "uuid": 42,
      "uri": "https://api.zeeg.me/v2/holidays/subscriptions/42",
      "category": {
        "type": "country",
        "key": "DE",
        "name": "Germany"
      },
      "holidays": [
        {
          "key": "new-year",
          "name": "New Year's Day",
          "date": "2026-01-01",
          "nextDate": "2027-01-01",
          "excluded": false
        },
        {
          "key": "christmas-day",
          "name": "Christmas Day",
          "date": "2026-12-25",
          "nextDate": "2027-12-25",
          "excluded": true
        }
      ],
      "createdAt": "2026-04-01T09:12:33+00:00",
      "updatedAt": "2026-04-15T08:00:00+00:00"
    }
  ]
}

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.

Authorizations

Authorization
string
header
required

Query Parameters

email
string<email>
required

Email address of the user whose holiday subscriptions to retrieve.

Example:

"lena.meier@horizondigital.de"

Response

OK

collection
object[]
required

Holiday subscriptions for the user.

Last modified on April 29, 2026