United Kingdom flag

Public Holidays in Scotland, United Kingdom 2031

7 total holidays4 national3 regional

2031 Holiday Calendar — Scotland

DateHolidayDayScope
2031-01-01New Year's DayWednesdayNational
2031-01-02New Year HolidayThursdayScotland
2031-05-05May DayMondayNational
2031-11-30St Andrew's DaySundayScotland
2031-12-01St Andrew's Day HolidayMondayScotland
2031-12-25Christmas DayThursdayNational
2031-12-26Boxing DayFridayNational

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

JavaScript — filter for Scotland

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