Netherlands, Kingdom of the 2024 Holidays

List of public holidays in Netherlands, Kingdom of the for year 2024

Netherlands, Kingdom of the - 2024 Holidays
24 of 24 holidays
DateDayNameType
Jan 1, 2024MondayNew Year's DayPublic Holiday
Feb 14, 2024WednesdayValentine's DayObservance
Mar 20, 2024WednesdayMarch EquinoxSeason
Mar 29, 2024FridayGood FridayPublic Holiday
Mar 31, 2024SundayEaster SundayPublic Holiday
Apr 1, 2024MondayEaster MondayPublic Holiday
Apr 27, 2024SaturdayKing's BirthdayPublic Holiday
May 4, 2024SaturdayRemembrance DayObservance
May 5, 2024SundayLiberation DayPublic Sector
May 9, 2024ThursdayAscension DayPublic Holiday
May 12, 2024SundayMother's DayObservance
May 19, 2024SundayWhit SundayPublic Holiday
May 20, 2024MondayWhit MondayPublic Holiday
Jun 16, 2024SundayFather's DayObservance
Jun 20, 2024ThursdayJune SolsticeSeason
Jul 1, 2024MondayKeti KotiObservance
Sep 22, 2024SundaySeptember EquinoxSeason
Dec 5, 2024ThursdaySt Nicholas' Eve/SinterklaasObservance
Dec 6, 2024FridaySt Nicholas' DayObservance
Dec 21, 2024SaturdayDecember SolsticeSeason
Dec 24, 2024TuesdayChristmas EveObservance
Dec 25, 2024WednesdayChristmas DayPublic Holiday
Dec 26, 2024ThursdaySecond Day of ChristmasPublic Holiday
Dec 31, 2024TuesdayNew Year's EveObservance

We strive to provide an accurate and up-to-date holiday list for Netherlands, Kingdom of the. However, please note that some holiday dates may change. If you discover any discrepancies, kindly report to us.

Holiday Type Color Legend

Holidays are color-coded based on their types:

  • Public HolidayPublic, National, Federal, and Gazetted holidays
  • Local HolidayLocal, Regional, State, and Provincial holidays
  • Other HolidayObservances and other types of holidays
Frequently Asked Questions

How many holidays in Netherlands, Kingdom of the this year in 2024?

There are 11 public holidays in Netherlands, Kingdom of the in 2024. If you are planning ahead? Check upcoming holidays

How to retrieve the Netherlands, Kingdom of the holidays list via API?

Simply make a GET request to v1/holidays?country=NL&year=2024 API to retrieve this list of Netherlands, Kingdom of the holidays.

Here is an example using Node.js and our official package on NPM:

// Install the 11holidays package from NPM
// npm i 11holidays

import HolidaysApi from '11holidays';

const instance = new HolidaysApi(API_KEY);
const holidays = await instance.holidays.list({
  country: 'NL',
  year: '2024'
});
console.log(holidays);
API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=NL&year=2024" \
  -H "Authorization: Bearer YOUR_API_KEY"