Spain flag

Public Holidays in Balearic Islands, Spain 2022

14 total holidays11 national3 regional

2022 Holiday Calendar — Balearic Islands

DateHolidayDayScope
2022-01-01New Year's DaySaturdayNational
2022-01-06EpiphanyThursdayNational
2022-03-01Day of Balearic IslandsTuesdayBalearic Islands
2022-04-14Maundy ThursdayThursdayBalearic Islands
2022-04-15Good FridayFridayNational
2022-04-18Easter MondayMondayBalearic Islands
2022-05-01Labour DaySundayNational
2022-08-15Assumption DayMondayNational
2022-10-12Fiesta Nacional de EspañaWednesdayNational
2022-11-01All Saints' DayTuesdayNational
2022-12-03San Francisco JavierSaturdayNational
2022-12-06Constitution DayTuesdayNational
2022-12-08Immaculate ConceptionThursdayNational
2022-12-25Christmas DaySundayNational

Automate Balearic Islands 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=ES&year=2022" \
  -H "Authorization: Bearer YOUR_API_KEY"

JavaScript — filter for Balearic Islands

const res = await fetch(
  "https://api.holidays.rest/v1/holidays?country=ES&year=2022",
  { headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Balearic Islands (ISO code: IB)
const regional = holidays.filter(h =>
  !h.regions?.length || h.regions.includes("IB")
);
Public Holidays in Balearic Islands, Spain 2022 — Complete List