GET /holidays/:country_code/next
Hämta en lista över kommande helgdagar för ett specifikt land, från och med idag. Returnerar helgdagarnas namn, datum och typer. Perfekt för nedräkningswidgetar, planeringsverktyg för kontor, reseappar som lyfter fram kommande helgdagar på en destination och kalenderintegrationer som behöver markera de närmaste helgdagarna.
country_code
obligatorisk
Country code
| Namn | Obligatorisk | Standard | Beskrivning |
|---|---|---|---|
country_code |
Ja | - | Country code |
curl https://nordapi.ee/api/v1/holidays/US/next
curl https://nordapi.ee/api/v1/holidays/US/next
curl https://nordapi.ee/api/v1/holidays/NO/next
curl https://nordapi.ee/api/v1/holidays/JP/next
{
"count": 10,
"country_code": "US",
"data": [
{
"date": "2026-09-07",
"is_fixed": false,
"is_global": true,
"local_name": "Labor Day",
"name": "Labour Day",
"types": "Public"
},
{
"date": "2026-10-12",
"is_fixed": false,
"is_global": false,
"local_name": "Columbus Day",
"name": "Columbus Day",
"types": "Public"
},
{
"date": "2026-10-12",
"is_fixed": false,
"is_global": false,
"local_name": "Indigenous Peoples' Day",
"name": "Indigenous Peoples' Day",
"types": "Public"
},
{
"date": "2026-11-11",
"is_fixed": false,
"is_global": true,
"local_name": "Veterans Day",
"name": "Veterans Day",
"types": "Public"
},
{
"date": "2026-11-26",
"is_fixed": false,
"is_global": true,
"local_name": "Thanksgiving Day",
"name": "Thanksgiving Day",
"types": "Public"
},
{
"date": "2026-12-25",
"is_fixed": false,
"is_global": true,
"local_name": "Christmas Day",
"name": "Christmas Day",
"types": "Public"
},
{
"date": "2027-01-01",
"is_fixed": false,
"is_global": true,
"local_name": "New Year's Day",
"name": "New Year's Day",
"types": "Public"
},
{
"date": "2027-01-18",
"is_fixed": false,
"is_global": true,
"local_name": "Martin Luther King, Jr. Day",
"name": "Martin Luther King, Jr. Day",
"types": "Public"
},
{
"date": "2027-02-12",
"is_fixed": false,
"is_global": false,
"local_name": "Lincoln's Birthday",
"name": "Lincoln's Birthday",
"types": "Observance"
},
{
"date": "2027-02-15",
"is_fixed": false,
"is_global": true,
"local_name": "Washington's Birthday",
"name": "Presidents Day",
"types": "Public"
}
],
"success": true
}