Greece 2025 Holidays

List of public holidays in Greece for year 2025

Greece - 2025 Holidays
26 of 26 holidays
DateDayNameType
Jan 1, 2025WednesdayNew Year DayNational holiday
Jan 6, 2025MondayEpiphanyNational holiday
Jan 30, 2025ThursdayThe Three Holy HierarchsObservance
Feb 14, 2025FridayValentine's DayObservance
Mar 3, 2025MondayClean MondayDe Facto Holiday
Mar 20, 2025ThursdayMarch EquinoxSeason
Mar 25, 2025TuesdayGreek Independence DayNational holiday
Mar 25, 2025TuesdayAnnunciation of the Virgin MaryNational holiday
Apr 18, 2025FridayOrthodox Good FridayDe Facto Holiday
Apr 20, 2025SundayOrthodox Easter SundayObservance
Apr 21, 2025MondayOrthodox Easter MondayNational holiday
May 1, 2025ThursdayLabor Day / May DayNational holiday
May 11, 2025SundayMother’s DayObservance
Jun 8, 2025SundayOrthodox Holy Spirit SundayObservance
Jun 9, 2025MondayOrthodox Holy Spirit MondayDe Facto Holiday
Jun 15, 2025SundayFather's DayObservance
Jun 21, 2025SaturdayJune SolsticeSeason
Jul 24, 2025ThursdayThe Restoration of DemocracyObservance
Aug 15, 2025FridayDormition of the Holy VirginNational holiday
Sep 22, 2025MondaySeptember EquinoxSeason
Oct 28, 2025TuesdayThe Ochi dayNational holiday
Nov 17, 2025MondayPolytechneioObservance
Nov 21, 2025FridayArmed Forces DayObservance
Dec 21, 2025SundayDecember SolsticeSeason
Dec 25, 2025ThursdayChristmas DayNational holiday
Dec 26, 2025FridaySynaxis of the Mother of GodNational holiday

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

There are 10 public holidays in Greece in 2025. If you are planning ahead? Check upcoming holidays

How to retrieve the Greece holidays list via API?

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