🇮🇪Ireland Subdivisions
All 30 Ireland subdivisions with ISO 3166-2:IE codes - Europe / Northern Europe
Total
30 subdivisions
Types
County, Province
ISO Standard
ISO 3166-2:IE
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Ireland subdivisions
const subs = subdivision.getByCountry('IE');
// => 30 subdivisions
// Look up a specific subdivision
subdivision.get('IE-C');
// => { code: 'IE-C', name: 'Connacht', type: 'Province' }
// Validate a subdivision code
subdivision.isValidCode('IE-C'); // true
subdivision.isValidRegion('IE', 'C'); // trueTree-Shaking Tip
Import only Ireland subdivisions to minimize bundle size:
// Import only Ireland subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/IE';
Object.entries(subdivisions);
// => 30 entriesAll Ireland Subdivisions
Countys (26)
| Code | Name |
|---|---|
| IE-CE | An Clár |
| IE-CN | An Cabhán |
| IE-CO | Corcaigh |
| IE-CW | Carlow |
| IE-D | Baile Átha Cliath |
| IE-DL | Donegal |
| IE-G | Gaillimh |
| IE-KE | Cill Dara |
| IE-KK | Cill Chainnigh |
| IE-KY | Ciarraí |
| IE-LD | An Longfort |
| IE-LH | Louth |
| IE-LK | Limerick |
| IE-LM | Leitrim |
| IE-LS | Laois |
| IE-MH | An Mhí |
| IE-MN | Monaghan |
| IE-MO | Maigh Eo |
| IE-OY | Offaly |
| IE-RN | Ros Comáin |
| IE-SO | Sligeach |
| IE-TA | Tiobraid Árann |
| IE-WD | Port Láirge |
| IE-WH | An Iarmhí |
| IE-WW | Cill Mhantáin |
| IE-WX | Loch Garman |
Provinces (4)
| Code | Name |
|---|---|
| IE-C | Connacht |
| IE-L | Laighin |
| IE-M | An Mhumhain |
| IE-U | Ulaidh |
FAQ
- How many subdivisions does Ireland have?
- Ireland has 30 subdivisions defined in ISO 3166-2:IE, including 26 countys, 4 provinces.
- What is the ISO 3166-2 code format for Ireland?
- Ireland subdivision codes follow the format IE-XX, where IE is the country's alpha-2 code and XX is the subdivision identifier. For example, IE-C represents Connacht.
- How to get Ireland subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('IE')to get all 30 subdivisions.
Use Ireland subdivision data in your project
Get all 30 Ireland subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries