🇮🇶Iraq Governorates
All 19 Iraq subdivisions with ISO 3166-2:IQ codes - Asia / Western Asia
Total
19 subdivisions
Types
Governorate
ISO Standard
ISO 3166-2:IQ
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Iraq subdivisions
const subs = subdivision.getByCountry('IQ');
// => 19 subdivisions
// Look up a specific subdivision
subdivision.get('IQ-AN');
// => { code: 'IQ-AN', name: 'Al Anbār', type: 'Governorate' }
// Validate a subdivision code
subdivision.isValidCode('IQ-AN'); // true
subdivision.isValidRegion('IQ', 'AN'); // trueTree-Shaking Tip
Import only Iraq subdivisions to minimize bundle size:
// Import only Iraq subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/IQ';
Object.entries(subdivisions);
// => 19 entriesAll Iraq Governorates
| Code | Name | Type |
|---|---|---|
| IQ-AN | Al Anbār | Governorate |
| IQ-AR | Arbīl | Governorate |
| IQ-BA | Al Başrah | Governorate |
| IQ-BB | Bābil | Governorate |
| IQ-BG | Baghdād | Governorate |
| IQ-DA | Dahūk | Governorate |
| IQ-DI | Diyālá | Governorate |
| IQ-DQ | Dhī Qār | Governorate |
| IQ-HA | Halabja | Governorate |
| IQ-KA | Karbalā' | Governorate |
| IQ-KI | Kirkūk | Governorate |
| IQ-MA | Maysān | Governorate |
| IQ-MU | Al Muthanná | Governorate |
| IQ-NA | An Najaf | Governorate |
| IQ-NI | Nīnawá | Governorate |
| IQ-QA | Al Qādisīyah | Governorate |
| IQ-SD | Şalāḩ ad Dīn | Governorate |
| IQ-SU | As Sulaymānīyah | Governorate |
| IQ-WA | Wāsiţ | Governorate |
FAQ
- How many subdivisions does Iraq have?
- Iraq has 19 subdivisions defined in ISO 3166-2:IQ, including 19 governorates.
- What is the ISO 3166-2 code format for Iraq?
- Iraq subdivision codes follow the format IQ-XX, where IQ is the country's alpha-2 code and XX is the subdivision identifier. For example, IQ-AN represents Al Anbār.
- How to get Iraq subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('IQ')to get all 19 subdivisions.
Use Iraq subdivision data in your project
Get all 19 Iraq subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries