🇮🇶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');  // true

Tree-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 entries

All Iraq Governorates

CodeNameType
IQ-ANAl AnbārGovernorate
IQ-ARArbīlGovernorate
IQ-BAAl BaşrahGovernorate
IQ-BBBābilGovernorate
IQ-BGBaghdādGovernorate
IQ-DADahūkGovernorate
IQ-DIDiyāláGovernorate
IQ-DQDhī QārGovernorate
IQ-HAHalabjaGovernorate
IQ-KAKarbalā'Governorate
IQ-KIKirkūkGovernorate
IQ-MAMaysānGovernorate
IQ-MUAl MuthannáGovernorate
IQ-NAAn NajafGovernorate
IQ-NINīnawáGovernorate
IQ-QAAl QādisīyahGovernorate
IQ-SDŞalāḩ ad DīnGovernorate
IQ-SUAs SulaymānīyahGovernorate
IQ-WAWā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/countries via npm, then use subdivision.getByCountry('IQ') to get all 19 subdivisions.
View Iraq country page →Country code converter →

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