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-05-25",
"is_fixed": false,
"is_global": true,
"local_name": "Memorial Day",
"name": "Memorial Day",
"types": "Public"
},
{
"date": "2026-06-19",
"is_fixed": false,
"is_global": true,
"local_name": "Juneteenth National Independence Day",
"name": "Juneteenth National Independence Day",
"types": "Public"
},
{
"date": "2026-07-03",
"is_fixed": false,
"is_global": true,
"local_name": "Independence Day",
"name": "Independence Day",
"types": "Public"
},
{
"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": "Indigenous Peoples' Day",
"name": "Indigenous Peoples' Day",
"types": "Public"
},
{
"date": "2026-10-12",
"is_fixed": false,
"is_global": false,
"local_name": "Columbus Day",
"name": "Columbus 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"
}
],
"success": true
}