Skip to main content
GET
/
holidays
/
categories
List holiday categories
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": []
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

Optional case-insensitive substring filter on country name.

Maximum string length: 100
Example:

"germany"

Response

OK

collection
object[]
required

Supported countries with their regions.

Last modified on April 27, 2026