← Weltdaten

Feiertag prüfen

GET /holidays/check

Prüfen Sie, ob a specific date is a Feiertag in a given country. Liefert holiday name und details if the date is a holiday, oder confirms it is not. Unterstützt 100+ countries. Ideal für payroll systems that need to account for Feiertags, scheduling apps that should block holiday dates, und business tools that adjust deadlines around non-working days.

Parameter

country erforderlich

Country code

date erforderlich

Date

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/holidays/check?country=US&date=2026-12-25"
Check if Christmas is a US holiday
curl "https://nordapi.ee/api/v1/holidays/check?country=US&date=2026-12-25"
Check Norwegian Constitution Day
curl "https://nordapi.ee/api/v1/holidays/check?country=NO&date=2026-05-17"
Check a regular weekday in Germany
curl "https://nordapi.ee/api/v1/holidays/check?country=DE&date=2026-03-25"

Live-Antwort

{
  "country_code": "US",
  "date": "2026-12-25",
  "is_holiday": true,
  "success": true
}