GET /holidays/check
Athugaðu whether a specific date is a almennur frídagur í gefnu country. Skilar holiday name and details if the date is a holiday, or confirms it is not. Styður 100+ countries. Tilvalið fyrir payroll kerfi that need to account for almenna frídaga, scheduling forrit that should block holiday dates, and business verkfæri that adjust deadlines around non-working days.
country
nauðsynlegt
Country code
date
nauðsynlegt
Date
| Nafn | Nauðsynlegt | Sjálfgefið | Lýsing |
|---|---|---|---|
country |
Já | - | Country code |
date |
Já | - | Date |
curl "https://nordapi.ee/api/v1/holidays/check?country=US&date=2026-12-25"
curl "https://nordapi.ee/api/v1/holidays/check?country=US&date=2026-12-25"
curl "https://nordapi.ee/api/v1/holidays/check?country=NO&date=2026-05-17"
curl "https://nordapi.ee/api/v1/holidays/check?country=DE&date=2026-03-25"
{
"country_code": "US",
"date": "2026-12-25",
"is_holiday": true,
"success": true
}