Public Holidays in Wales, United Kingdom 2022
11 total holidays9 national2 regional
2022 Holiday Calendar — Wales
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2022-01-01 | New Year's Day | Saturday | National |
| 2022-04-15 | Good Friday | Friday | National |
| 2022-04-18 | Easter Monday | Monday | Wales |
| 2022-05-02 | May Day | Monday | National |
| 2022-06-02 | Late May Bank Holiday | Thursday | National |
| 2022-06-03 | Her Majesty The Queen's Platinum Jubilee | Friday | National |
| 2022-08-29 | August Bank Holiday | Monday | Wales |
| 2022-09-19 | Bank Holiday for the State Funeral of Queen Elizabeth II | Monday | National |
| 2022-12-25 | Christmas Day | Sunday | National |
| 2022-12-26 | Boxing Day | Monday | National |
| 2022-12-27 | Christmas Holiday | Tuesday | National |
Automate Wales holiday data via API
One API call. Filter by region code. Integrate in minutes.
cURL
curl -X GET \ "https://api.holidays.rest/v1/holidays?country=GB&year=2022" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Wales
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=GB&year=2022",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Wales (ISO code: WLS)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("WLS")
);