🇨🇱Chile Regions
All 15 Chile subdivisions with ISO 3166-2:CL codes - South America / South America
Total
15 subdivisions
Types
Region
ISO Standard
ISO 3166-2:CL
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Chile subdivisions
const subs = subdivision.getByCountry('CL');
// => 15 subdivisions
// Look up a specific subdivision
subdivision.get('CL-AI');
// => { code: 'CL-AI', name: 'Aysén', type: 'Region' }
// Validate a subdivision code
subdivision.isValidCode('CL-AI'); // true
subdivision.isValidRegion('CL', 'AI'); // trueTree-Shaking Tip
Import only Chile subdivisions to minimize bundle size:
// Import only Chile subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/CL';
Object.entries(subdivisions);
// => 15 entriesAll Chile Regions
| Code | Name | Type |
|---|---|---|
| CL-AI | Aysén | Region |
| CL-AN | Antofagasta | Region |
| CL-AP | Arica y Parinacota | Region |
| CL-AR | Araucanía | Region |
| CL-AT | Atacama | Region |
| CL-BI | Biobío | Region |
| CL-CO | Coquimbo | Region |
| CL-LI | Libertador General Bernardo O'Higgins | Region |
| CL-LL | Los Lagos | Region |
| CL-LR | Los Ríos | Region |
| CL-MA | Magallanes | Region |
| CL-ML | Maule | Region |
| CL-RM | Región Metropolitana de Santiago | Region |
| CL-TA | Tarapacá | Region |
| CL-VS | Valparaíso | Region |
FAQ
- How many subdivisions does Chile have?
- Chile has 15 subdivisions defined in ISO 3166-2:CL, including 15 regions.
- What is the ISO 3166-2 code format for Chile?
- Chile subdivision codes follow the format CL-XX, where CL is the country's alpha-2 code and XX is the subdivision identifier. For example, CL-AI represents Aysén.
- How to get Chile subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('CL')to get all 15 subdivisions.
Use Chile subdivision data in your project
Get all 15 Chile subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries