Public Holidays in Balearic Islands, Spain 2029
11 total holidays10 national1 regional
2029 Holiday Calendar — Balearic Islands
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2029-01-01 | New Year's Day | Monday | National |
| 2029-01-06 | Epiphany | Saturday | National |
| 2029-03-01 | Day of Balearic Islands | Thursday | Balearic Islands |
| 2029-05-01 | Labour Day | Tuesday | National |
| 2029-08-15 | Assumption Day | Wednesday | National |
| 2029-10-12 | Fiesta Nacional de España | Friday | National |
| 2029-11-01 | All Saints' Day | Thursday | National |
| 2029-12-03 | San Francisco Javier | Monday | National |
| 2029-12-06 | Constitution Day | Thursday | National |
| 2029-12-08 | Immaculate Conception | Saturday | National |
| 2029-12-25 | Christmas Day | Tuesday | National |
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=2029" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Balearic Islands
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=ES&year=2029",
{ 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")
);