Subdivisions & City-Level Holidays
Festivo supports both ISO-standard subdivisions (states, provinces, regions) and city-level holidays, which are not covered by ISO 3166-2.
New: Structured Regions Field
As of the latest API update, holiday responses now include a structured regions field that provides detailed geographic classification:
1{2 "name": "Feast of Saint Ambrose",3 "date": "2026-12-07",4 "country": "IT",5 "subdivisions": [6 "IT-MILAN"7 ],8 "regions": [9 {10 "code": "IT-MILAN",11 "type": "city"12 },13 {14 "code": "IT-88",15 "type": "region"16 }17 ]18}
The regions field is an array of objects, each containing:
code: The subdivision or city identifiertype: Either"city"or"region"for precise classification
This makes it easier to:
- Filter holidays by geographic level
- Build location-aware UI components
- Distinguish between city-specific and region-wide holidays
- Implement sophisticated business logic based on location
Note: The legacy subdivisions field (string array) remains available for backward compatibility.
ISO 3166-2 Subdivisions
Most countries use ISO 3166-2 codes to identify their administrative subdivisions. These codes are used in the API to filter holidays for specific regions.
Format: {COUNTRY}-{SUBDIVISION}
Common ISO 3166-2 Codes
| Country | Code | Subdivision Name | Type |
|---|---|---|---|
| π¬π§ United Kingdom | GB-SCT | Scotland | Region |
| π¬π§ United Kingdom | GB-ENG | England | Region |
| π¬π§ United Kingdom | GB-WLS | Wales | Region |
| π¬π§ United Kingdom | GB-NIR | Northern Ireland | Region |
| πΊπΈ United States | US-CA | California | State |
| πΊπΈ United States | US-NY | New York | State |
| πΊπΈ United States | US-TX | Texas | State |
| π©πͺ Germany | DE-BY | Bavaria | State |
| π©πͺ Germany | DE-BE | Berlin | State |
| π©πͺ Germany | DE-NW | North Rhine-Westphalia | State |
| π«π· France | FR-75 | Paris | Department |
| π«π· France | FR-13 | Bouches-du-RhΓ΄ne | Department |
| πͺπΈ Spain | ES-CT | Catalonia | Autonomous Community |
| πͺπΈ Spain | ES-MD | Madrid | Autonomous Community |
| π¨π¦ Canada | CA-ON | Ontario | Province |
| π¨π¦ Canada | CA-QC | Quebec | Province |
| π¦πΊ Australia | AU-NSW | New South Wales | State |
| π¦πΊ Australia | AU-VIC | Victoria | State |