Spain flag

Public Holidays in Balearic Islands, Spain 2025

14 total holidays11 national3 regional

2025 Holiday Calendar — Balearic Islands

DateHolidayDayScope
2025-01-01New Year's DayWednesdayNational
2025-01-06EpiphanyMondayNational
2025-03-01Day of Balearic IslandsSaturdayBalearic Islands
2025-04-17Maundy ThursdayThursdayBalearic Islands
2025-04-18Good FridayFridayNational
2025-04-21Easter MondayMondayBalearic Islands
2025-05-01Labour DayThursdayNational
2025-08-15Assumption DayFridayNational
2025-10-12Fiesta Nacional de EspañaSundayNational
2025-11-01All Saints' DaySaturdayNational
2025-12-03San Francisco JavierWednesdayNational
2025-12-06Constitution DaySaturdayNational
2025-12-08Immaculate ConceptionMondayNational
2025-12-25Christmas DayThursdayNational

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

JavaScript — filter for Balearic Islands

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