Jersey Holidays in 2024
List of public holidays in Jersey 2024 calendar
Date | Day | Name | Type |
---|---|---|---|
1st January | Monday | New Year's Day | Public Holiday |
20th March | Wednesday | March Equinox | Season |
29th March | Friday | Good Friday | Public Holiday |
31st March | Sunday | Daylight Saving Time starts | Clock change/Daylight Saving Time |
1st April | Monday | Easter Monday | Public Holiday |
6th May | Monday | Early May Bank Holiday | Public Holiday |
9th May | Thursday | Liberation Day | Public Holiday |
27th May | Monday | Spring Bank Holiday | Public Holiday |
20th June | Thursday | June Solstice | Season |
26th August | Monday | Summer Bank Holiday | Public Holiday |
22nd September | Sunday | September Equinox | Season |
27th October | Sunday | Daylight Saving Time ends | Clock change/Daylight Saving Time |
21st December | Saturday | December Solstice | Season |
25th December | Wednesday | Christmas Day | Public Holiday |
26th December | Thursday | Boxing Day | Public Holiday |
We strive to provide an accurate and up-to-date holiday's list for Jersey. 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 Jersey this year in 2024?
There are 9 holidays in Jersey in 2024
How to retrieve the Jersey holidays list via API?
Simply make a GET request to v1/holidays?country=JE&year=2024
API to retrieve this list of Jersey 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: 'JE', year: '2024'});
console.log(holidays);