United Kingdom flag

Public Holidays in Scotland, United Kingdom 2028

6 total holidays3 national3 regional

2028 Holiday Calendar — Scotland

DateHolidayDayScope
2028-01-04New Year'sTuesdayScotland
2028-05-01May DayMondayNational
2028-08-07Summer Bank HolidayMondayScotland
2028-11-30St Andrew's DayThursdayScotland
2028-12-25Christmas DayMondayNational
2028-12-26Boxing DayTuesdayNational

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=2028" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Scotland

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=GB&year=2028",
  { 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 2028 — Complete List