Gibraltar 2025 Holidays
List of public holidays in Gibraltar for year 2025
Gibraltar - 2025 Holidays
25 of 25 holidays
| Date | Day | Name | Type |
|---|---|---|---|
| Jan 1, 2025 | Wednesday | New Year's Day | Public Holiday |
| Feb 14, 2025 | Friday | Valentine's Day | Observance |
| Feb 17, 2025 | Monday | Winter Midterm Bank Holiday | Public Holiday |
| Mar 20, 2025 | Thursday | March Equinox | Season |
| Mar 30, 2025 | Sunday | Mothers' Day | Observance |
| Mar 30, 2025 | Sunday | Daylight Saving Time starts | Clock Change/Daylight Saving Time |
| Apr 18, 2025 | Friday | Good Friday | Public Holiday |
| Apr 20, 2025 | Sunday | Easter Sunday | Major Observance |
| Apr 21, 2025 | Monday | Easter Monday | Public Holiday |
| Apr 28, 2025 | Monday | Workers' Memorial Day | Public Holiday |
| May 1, 2025 | Thursday | May Day | Public Holiday |
| May 26, 2025 | Monday | Spring Bank Holiday | Public Holiday |
| Jun 15, 2025 | Sunday | Father's Day | Observance |
| Jun 16, 2025 | Monday | King's Birthday Holiday (Tentative Date) | Public Holiday |
| Jun 21, 2025 | Saturday | June Solstice | Season |
| Aug 25, 2025 | Monday | Late Summer Bank Holiday | Public Holiday |
| Sep 10, 2025 | Wednesday | Gibraltar Day | Public Holiday |
| Sep 22, 2025 | Monday | September Equinox | Season |
| Oct 26, 2025 | Sunday | Daylight Saving Time ends | Clock Change/Daylight Saving Time |
| Oct 31, 2025 | Friday | Halloween | Observance |
| Dec 21, 2025 | Sunday | December Solstice | Season |
| Dec 24, 2025 | Wednesday | Christmas Eve | Major Observance |
| Dec 25, 2025 | Thursday | Christmas Day | Public Holiday |
| Dec 26, 2025 | Friday | Boxing Day | Public Holiday |
| Dec 31, 2025 | Wednesday | New Year's Eve | Major Observance |
We strive to provide an accurate and up-to-date holiday list for Gibraltar. 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 Gibraltar this year in 2025?
There are 12 public holidays in Gibraltar in 2025. If you are planning ahead? Check upcoming holidays
How to retrieve the Gibraltar holidays list via API?
Simply make a GET request to v1/holidays?country=GI&year=2025 API to retrieve this list of Gibraltar 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: 'GI',
year: '2025'
});
console.log(holidays);API Examples
Quick start examples in different programming languages
curl -X GET "https://api.11holidays.com/v1/holidays?country=GI&year=2025" \
-H "Authorization: Bearer YOUR_API_KEY"