GET /holidays/:country_code/next
Get a list of upcoming helgdagar for a specifik land, starting från today. Returnerar holiday namn, datum, and typer. Perfekt för antaldown widgetar, office att planera verktyg, rese appar som highlight upcoming holidays at a destination, and calendar integrations som behöver to mark the next few holidays.
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-08",
"is_fixed": false,
"is_global": false,
"local_name": "Truman Day",
"name": "Truman Day",
"types": "School,Authorities"
},
{
"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": "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"
}
],
"success": true
}