GET /holidays/check
Check huruvida a specifik datum is a public holiday in a given land. Returnerar holiday namn and detaljer if the datum is a holiday, or confirms it is not. Stöder 100+ länder. Idealiskt för payroll system som behöver to account for helgdagar, att schemalägga appar som should block holiday datum, and business verktyg som justera deadlines around non-working dagar.
country
obligatorisk
Country code
date
obligatorisk
Date
| Namn | Obligatorisk | Standard | Beskrivning |
|---|---|---|---|
country |
Ja | - | Country code |
date |
Ja | - | 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
}