← Maailma andmed

Kontrolli püha

GET /holidays/check

Kontrollige whether a specific date is a public holiday in a given country. Tagastab holiday name and details if the date is a holiday, or confirms it is not. Toetab 100+ countries. Ideaalne payroll systems that need to account for riigipühad, scheduling apps that should block holiday dates, and business tools that adjust deadlines around non-working days.

Parameetrid

country kohustuslik

Country code

date kohustuslik

Date

Näidispäringud

Põhikasutus
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"

Reaalajas vastus

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