Ethiopia 2025 Holidays

List of public holidays in Ethiopia for year 2025

Ethiopia - 2025 Holidays
16 of 16 holidays
DateDayNameType
Jan 7, 2025TuesdayEthiopian Christmas DayPublic Holiday
Jan 19, 2025SundayEpiphany / TimkatPublic Holiday
Mar 2, 2025SundayAdwa Victory DayPublic Holiday
Mar 20, 2025ThursdayMarch EquinoxSeason
Mar 31, 2025MondayEid al-Fitr (Tentative Date)Public Holiday
Apr 18, 2025FridayEthiopian Good FridayPublic Holiday
Apr 20, 2025SundayFasikaPublic Holiday
May 1, 2025ThursdayInternational Labor DayPublic Holiday
May 5, 2025MondayPatriots' DayPublic Holiday
May 28, 2025WednesdayDerg Downfall DayPublic Holiday
Jun 7, 2025SaturdayEid al-Adha (Tentative Date)Public Holiday
Jun 21, 2025SaturdayJune SolsticeSeason
Sep 5, 2025FridayThe Prophet's Birthday (Tentative Date)Public Holiday
Sep 22, 2025MondaySeptember EquinoxSeason
Sep 27, 2025SaturdayMeskelPublic Holiday
Dec 21, 2025SundayDecember SolsticeSeason

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

There are 12 public holidays in Ethiopia in 2025. If you are planning ahead? Check upcoming holidays

How to retrieve the Ethiopia holidays list via API?

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