United Kingdom flag

Public Holidays in Scotland, United Kingdom 2022

14 total holidays9 national5 regional

2022 Holiday Calendar — Scotland

DateHolidayDayScope
2022-01-01New Year's DaySaturdayNational
2022-01-02New Year HolidaySundayScotland
2022-01-03New Year HolidayMondayScotland
2022-01-04New Year HolidayTuesdayScotland
2022-04-15Good FridayFridayNational
2022-05-02May DayMondayNational
2022-06-02Late May Bank HolidayThursdayNational
2022-06-03Her Majesty The Queen's Platinum JubileeFridayNational
2022-08-01August Bank HolidayMondayScotland
2022-09-19Bank Holiday for the State Funeral of Queen Elizabeth IIMondayNational
2022-11-30St Andrew's DayWednesdayScotland
2022-12-25Christmas DaySundayNational
2022-12-26Boxing DayMondayNational
2022-12-27Christmas HolidayTuesdayNational

Automate Scotland 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 Scotland

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 Scotland (ISO code: SCT)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("SCT")
);

Other Years — Scotland

Other Regions — United Kingdom

Public Holidays in Scotland, United Kingdom 2022 — Complete List