Guadeloupe 2025 Holidays

List of public holidays in Guadeloupe for year 2025

Guadeloupe - 2025 Holidays
19 of 19 holidays
DateDayNameType
Jan 1, 2025WednesdayNew Year's DayPublic Holiday
Mar 3, 2025MondayCarnival / Shrove MondayDe facto holiday
Mar 4, 2025TuesdayCarnival / Shrove Tuesday / Pancake DayDe facto holiday
Mar 5, 2025WednesdayCarnival / Ash WednesdayDe facto holiday
Mar 27, 2025ThursdayMid Lent ThursdayDe facto holiday
Apr 21, 2025MondayEaster MondayPublic Holiday
May 1, 2025ThursdayLabor Day / May DayPublic Holiday
May 8, 2025ThursdayWWII Victory DayPublic Holiday
May 27, 2025TuesdayAbolition DayPublic Holiday
May 29, 2025ThursdayAscension DayPublic Holiday
Jun 8, 2025SundayWhit SundayObservance
Jun 9, 2025MondayWhit MondayPublic Holiday
Jul 14, 2025MondayBastille DayPublic Holiday
Aug 15, 2025FridayAssumption of MaryPublic Holiday
Nov 1, 2025SaturdayAll Saints' DayPublic Holiday
Nov 11, 2025TuesdayArmistice DayPublic Holiday
Dec 24, 2025WednesdayChristmas EveObservance
Dec 25, 2025ThursdayChristmas DayPublic Holiday
Dec 31, 2025WednesdayNew Year's EveObservance

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

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

How to retrieve the Guadeloupe holidays list via API?

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