← Weltdaten

Landesfeiertage

GET /holidays/:country_code

Rufen Sie alle gesetzlichen Feiertage für ein bestimmtes Land im laufenden Jahr ab. Eine praktische Abkürzung, bei der das Jahr nicht angegeben werden muss. Liefert Feiertagsnamen, Daten und Typen. Ideal für schnelle Abfragen und Dashboard-Widgets, die die verbleibenden Feiertage dieses Jahres für ein bestimmtes Land anzeigen.

Parameter

country_code erforderlich

Country code

Beispielanfragen

Grundlegende Verwendung
curl https://nordapi.ee/api/v1/holidays/NO
Norway holidays this year
curl https://nordapi.ee/api/v1/holidays/NO
Germany holidays this year
curl https://nordapi.ee/api/v1/holidays/DE
UK holidays this year
curl https://nordapi.ee/api/v1/holidays/GB

Live-Antwort

{
  "count": 12,
  "country_code": "NO",
  "data": [
    {
      "date": "2026-01-01",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Første nyttårsdag",
      "name": "New Year's Day",
      "types": "Public"
    },
    {
      "date": "2026-04-02",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Skjærtorsdag",
      "name": "Maundy Thursday",
      "types": "Public"
    },
    {
      "date": "2026-04-03",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Langfredag",
      "name": "Good Friday",
      "types": "Public"
    },
    {
      "date": "2026-04-05",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Første påskedag",
      "name": "Easter Sunday",
      "types": "Public"
    },
    {
      "date": "2026-04-06",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Andre påskedag",
      "name": "Easter Monday",
      "types": "Public"
    },
    {
      "date": "2026-05-01",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Første mai",
      "name": "Labour Day",
      "types": "Public"
    },
    {
      "date": "2026-05-14",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Kristi himmelfartsdag",
      "name": "Ascension Day",
      "types": "Public"
    },
    {
      "date": "2026-05-17",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Syttende mai",
      "name": "Constitution Day",
      "types": "Public"
    },
    {
      "date": "2026-05-24",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Første pinsedag",
      "name": "Pentecost",
      "types": "Public"
    },
    {
      "date": "2026-05-25",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Andre pinsedag",
      "name": "Whit Monday",
      "types": "Public"
    },
    {
      "date": "2026-12-25",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Første juledag",
      "name": "Christmas Day",
      "types": "Public"
    },
    {
      "date": "2026-12-26",
      "is_fixed": false,
      "is_global": true,
      "local_name": "Andre juledag",
      "name": "St. Stephen's Day",
      "types": "Public"
    }
  ],
  "success": true,
  "year": 2026
}