Italy 2024 Holidays

List of public holidays in Italy for year 2024

Italy - 2024 Holidays
27 of 27 holidays
DateDayNameType
Jan 1, 2024MondayNew Year's DayNational holiday
Jan 6, 2024SaturdayEpiphanyNational holiday
Feb 14, 2024WednesdayAsh WednesdayObservance
Mar 19, 2024TuesdayFather's DayObservance
Mar 20, 2024WednesdayMarch EquinoxSeason
Mar 29, 2024FridayGood FridayObservance
Mar 31, 2024SundayEaster SundayNational holiday
Apr 1, 2024MondayEaster MondayNational holiday
Apr 25, 2024ThursdayLiberation DayNational holiday
Apr 25, 2024ThursdayThe Feast of St Mark (Venice)Local holiday
May 1, 2024WednesdayLabor Day / May DayNational holiday
May 12, 2024SundayMother's DayObservance
Jun 2, 2024SundayRepublic DayNational holiday
Jun 20, 2024ThursdayJune SolsticeSeason
Jun 24, 2024MondayThe Feast of St. John (Florence, Genoa, Turin)Local holiday
Jun 29, 2024SaturdayThe Feast of St. Peter and St. Paul (Rome)Local holiday
Aug 15, 2024ThursdayAssumption of MaryNational holiday
Aug 15, 2024ThursdayFerragostoObservance
Sep 19, 2024ThursdayThe Feast of Saint Januarius (Naples)Local holiday
Sep 22, 2024SundaySeptember EquinoxSeason
Nov 1, 2024FridayAll Saints' DayNational holiday
Dec 7, 2024SaturdayThe Feast of St. Ambrose (Milan)Local holiday
Dec 8, 2024SundayFeast of the Immaculate ConceptionNational holiday
Dec 21, 2024SaturdayDecember SolsticeSeason
Dec 25, 2024WednesdayChristmas DayNational holiday
Dec 26, 2024ThursdaySt. Stephen's DayNational holiday
Dec 31, 2024TuesdayNew Year's EveObservance

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

There are 12 public holidays in Italy in 2024. If you are planning ahead? Check upcoming holidays

How to retrieve the Italy holidays list via API?

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