Croatia 2024 Holidays

List of public holidays in Croatia for year 2024

Croatia - 2024 Holidays
39 of 39 holidays
DateDayNameType
Jan 1, 2024MondayNew Year's DayNational holiday
Jan 6, 2024SaturdayEpiphanyNational holiday
Jan 7, 2024SundayOrthodox Christmas DayOptional holiday
Jan 9, 2024TuesdayMeđimurje Unification DayObservance
Jan 15, 2024MondayDay of the International Recognition of the Republic of CroatiaObservance
Jan 15, 2024MondayDay of Peaceful Reintegration of the Croatian Danube RegionObservance
Mar 11, 2024MondayRamadan Start (Tentative Date)Observance
Mar 15, 2024FridayDay of the Establishment of the National Protection in the Republic of CroatiaObservance
Mar 19, 2024TuesdayFather’s DayObservance
Mar 20, 2024WednesdayMarch EquinoxSeason
Mar 31, 2024SundayEaster SundayNational holiday
Apr 1, 2024MondayEaster MondayNational holiday
Apr 10, 2024WednesdayRamadan Bayram (Tentative Date)Optional holiday
Apr 30, 2024TuesdayDay of the Deaths of Zrinski and FrankopanObservance
May 1, 2024WednesdayLabor Day / May DayNational holiday
May 5, 2024SundayOrthodox Easter DayOptional holiday
May 6, 2024MondayOrthodox Easter MondayOptional holiday
May 9, 2024ThursdayEurope Day and Victory Day Over FascismObservance
May 12, 2024SundayMother’s DayObservance
May 30, 2024ThursdayCorpus ChristiNational holiday
May 30, 2024ThursdayStatehood DayNational holiday
Jun 17, 2024MondayKurban Bayram (Tentative Date)Optional holiday
Jun 20, 2024ThursdayJune SolsticeSeason
Jun 22, 2024SaturdayDay of Antifascist StruggleNational holiday
Jun 25, 2024TuesdayIndependence DayObservance
Aug 5, 2024MondayVictory DayNational holiday
Aug 15, 2024ThursdayAssumption of MaryNational holiday
Aug 23, 2024FridayEuropean Day of Remembrance of Victims of Totalitarian and Authoritarian RegimesObservance
Aug 30, 2024FridayDay of Remembrance of Missing Persons in the Homeland WarObservance
Sep 22, 2024SundaySeptember EquinoxSeason
Sep 25, 2024WednesdayUnification Day of Istria, Rijeka, Zadar, and the IslandsObservance
Oct 3, 2024ThursdayRosh HashanaOptional holiday
Oct 8, 2024TuesdayDay of the Croatian ParliamentObservance
Oct 12, 2024SaturdayYom KippurOptional holiday
Nov 1, 2024FridayAll Saints' DayNational holiday
Nov 18, 2024MondayRemembrance DayNational holiday
Dec 21, 2024SaturdayDecember SolsticeSeason
Dec 25, 2024WednesdayChristmas DayNational holiday
Dec 26, 2024ThursdaySt Stephen's DayNational holiday

We strive to provide an accurate and up-to-date holiday list for Croatia. 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 Croatia this year in 2024?

There are 14 public holidays in Croatia in 2024. If you are planning ahead? Check upcoming holidays

How to retrieve the Croatia holidays list via API?

Simply make a GET request to v1/holidays?country=HR&year=2024 API to retrieve this list of Croatia 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: 'HR',
  year: '2024'
});
console.log(holidays);
API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=HR&year=2024" \
  -H "Authorization: Bearer YOUR_API_KEY"