Uruguay 2025 Holidays

List of public holidays in Uruguay for year 2025

Uruguay - 2025 Holidays
22 of 22 holidays
DateDayNameType
Jan 1, 2025WednesdayNew Year's DayNational Holiday
Jan 6, 2025MondayThe Three Wise Men DayBank / working holiday
Mar 3, 2025MondayCarnival / Shrove MondayBank / working holiday
Mar 4, 2025TuesdayCarnival / Shrove Tuesday / Pancake DayBank / working holiday
Mar 20, 2025ThursdayMarch EquinoxSeason
Apr 17, 2025ThursdayMaundy ThursdayBank / working holiday
Apr 18, 2025FridayGood FridayBank / working holiday
Apr 19, 2025SaturdayLanding of the 33 orientalsBank / working holiday
Apr 20, 2025SundayEaster SundayObservance, Christian
May 1, 2025ThursdayLabor Day / May DayNational Holiday
May 18, 2025SundayBattle of Las PiedrasBank / working holiday
Jun 19, 2025ThursdayJosé Artigas' Birthday MemorialBank / working holiday
Jun 20, 2025FridayJune SolsticeSeason
Jul 18, 2025FridayConstitution DayNational Holiday
Aug 25, 2025MondayIndependence DayNational Holiday
Sep 22, 2025MondaySeptember EquinoxSeason
Oct 12, 2025SundayDay of cultural diversityBank / working holiday
Nov 2, 2025SundayAll Souls' DayBank / working holiday
Dec 21, 2025SundayDecember SolsticeSeason
Dec 24, 2025WednesdayChristmas EveObservance, Christian
Dec 25, 2025ThursdayChristmas DayNational Holiday, Christian
Dec 31, 2025WednesdayNew Year's EveObservance

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

There are 5 public holidays in Uruguay in 2025. If you are planning ahead? Check upcoming holidays

How to retrieve the Uruguay holidays list via API?

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