Malta 2023 Holidays

List of public holidays in Malta for year 2023

Malta - 2023 Holidays
22 of 22 holidays
DateDayNameType
Jan 1, 2023SundayNew Year's DayPublic holiday
Feb 10, 2023FridayFeast of Saint Paul's ShipwreckPublic holiday
Mar 19, 2023SundayFeast of Saint JosephPublic holiday
Mar 31, 2023FridayFreedom DayNational holiday
Apr 7, 2023FridayGood FridayPublic holiday
Apr 9, 2023SundayEaster SundayObservance
Apr 10, 2023MondayEaster MondayObservance
May 1, 2023MondayLabour Day/May DayPublic holiday
May 14, 2023SundayMother’s DayObservance
Jun 7, 2023WednesdaySette GiugnoNational holiday
Jun 18, 2023SundayFather’s DayObservance
Jun 29, 2023ThursdayFeast of Saints Peter and PaulPublic holiday
Aug 15, 2023TuesdayThe Feast of Mary's AssumptionPublic holiday
Sep 8, 2023FridayThe Feast of Our Lady of VictoriesNational holiday
Sep 21, 2023ThursdayIndependence DayNational holiday
Dec 8, 2023FridayFeast of the Immaculate ConceptionPublic holiday
Dec 13, 2023WednesdayRepublic DayNational holiday
Dec 24, 2023SundayChristmas EveObservance
Dec 25, 2023MondayChristmas DayPublic holiday
Dec 26, 2023TuesdayBoxing DayObservance
Dec 26, 2023TuesdayBank HolidayBank holiday
Dec 31, 2023SundayNew Year's EveObservance

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

There are 14 public holidays in Malta in 2023. If you are planning ahead? Check upcoming holidays

How to retrieve the Malta holidays list via API?

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