Public Holidays in Basque Country, Spain 2031
11 total holidays10 national1 regional
2031 Holiday Calendar — Basque Country
| Date | Holiday | Day | Scope |
|---|---|---|---|
| 2031-01-01 | New Year's Day | Wednesday | National |
| 2031-01-06 | Epiphany | Monday | National |
| 2031-05-01 | Labour Day | Thursday | National |
| 2031-07-25 | Saint James' Day | Friday | Basque Country |
| 2031-08-15 | Assumption Day | Friday | National |
| 2031-10-12 | Fiesta Nacional de España | Sunday | National |
| 2031-11-01 | All Saints' Day | Saturday | National |
| 2031-12-03 | San Francisco Javier | Wednesday | National |
| 2031-12-06 | Constitution Day | Saturday | National |
| 2031-12-08 | Immaculate Conception | Monday | National |
| 2031-12-25 | Christmas Day | Thursday | National |
Automate Basque Country 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=2031" \ -H "Authorization: Bearer YOUR_API_KEY"
JavaScript — filter for Basque Country
const res = await fetch(
"https://api.holidays.rest/v1/holidays?country=ES&year=2031",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const holidays = await res.json();
// Filter for Basque Country (ISO code: PV)
const regional = holidays.filter(h =>
!h.regions?.length || h.regions.includes("PV")
);