Gibraltar Holidays in 2023
List of public holidays in Gibraltar 2023 calendar
Date | Day | Name | Type |
---|---|---|---|
1st January | Sunday | New Year's Day | Public Holiday |
2nd January | Monday | New Year's Day observed | Public Holiday |
14th February | Tuesday | Valentine's Day | Observance |
20th February | Monday | Winter Midterm Bank Holiday | Public Holiday |
19th March | Sunday | Mothers' Day | Observance |
20th March | Monday | March Equinox | Season |
26th March | Sunday | Daylight Saving Time starts | Clock change/Daylight Saving Time |
7th April | Friday | Good Friday | Public Holiday |
9th April | Sunday | Easter Sunday | Major Observance |
10th April | Monday | Easter Monday | Public Holiday |
28th April | Friday | Workers' Memorial Day | Public Holiday |
1st May | Monday | May Day | Public Holiday |
8th May | Monday | Special King's Coronation Bank Holiday | Public Holiday |
29th May | Monday | Spring Bank Holiday | Public Holiday |
18th June | Sunday | Father's Day | Observance |
19th June | Monday | King's Birthday Holiday | Public Holiday |
21st June | Wednesday | June Solstice | Season |
28th August | Monday | Late Summer Bank Holiday | Public Holiday |
10th September | Sunday | Gibraltar Day | Public Holiday |
11th September | Monday | Gibraltar Day observed | Public Holiday |
23rd September | Saturday | September Equinox | Season |
29th October | Sunday | Daylight Saving Time ends | Clock change/Daylight Saving Time |
31st October | Tuesday | Halloween | Observance |
22nd December | Friday | December Solstice | Season |
24th December | Sunday | Christmas Eve | Major Observance |
25th December | Monday | Christmas Day | Public Holiday |
26th December | Tuesday | Boxing Day | Public Holiday |
31st December | Sunday | New Year's Eve | Major Observance |
We strive to provide an accurate and up-to-date holiday's list for Gibraltar. however, please note that some holidays dates may change. If you discover any discrepancies, kindly report to us.
Note: Some holidays are color-coded based on the types of holidays. For example -
- Public Holidays
- Local Holidays
- Other Holidays
Frequently Asked Questions
How many holidays in Gibraltar this year in 2023?
There are 15 holidays in Gibraltar in 2023
How to retrieve the Gibraltar holidays list via API?
Simply make a GET request to v1/holidays?country=GI&year=2023
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: '2023'});
console.log(holidays);