🇰🇿Kazakhstan Subdivisions

All 20 Kazakhstan subdivisions with ISO 3166-2:KZ codes - Asia / Central Asia

Total

20 subdivisions

Types

City, Region

ISO Standard

ISO 3166-2:KZ

Code Example

import { subdivision } from '@koshmoney/countries';

// Get all Kazakhstan subdivisions
const subs = subdivision.getByCountry('KZ');
// => 20 subdivisions

// Look up a specific subdivision
subdivision.get('KZ-ABY');
// => { code: 'KZ-ABY', name: 'Abai oblysy', type: 'Region' }

// Validate a subdivision code
subdivision.isValidCode('KZ-ABY');  // true
subdivision.isValidRegion('KZ', 'ABY');  // true

Tree-Shaking Tip

Import only Kazakhstan subdivisions to minimize bundle size:

// Import only Kazakhstan subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/KZ';

Object.entries(subdivisions);
// => 20 entries

All Kazakhstan Subdivisions

Citys (3)

CodeName
KZ-ALAAlmaty
KZ-ASTAstana
KZ-SHYShymkent

Regions (17)

CodeName
KZ-ABYAbai oblysy
KZ-AKMAkmolinskaja oblast'
KZ-AKTAktjubinskaja oblast'
KZ-ALMAlmatinskaja oblast'
KZ-ATYAtyraū oblysy
KZ-KARKaragandinskaja oblast'
KZ-KUSKostanajskaja oblast'
KZ-KZYKyzylordinskaja oblast'
KZ-MANMangghystaū oblysy
KZ-PAVPavlodar oblysy
KZ-SEVSevero-Kazahstanskaja oblast'
KZ-TURTurkistan oblysy
KZ-ULYUlytau oblysy
KZ-VOSShyghys Qazaqstan oblysy
KZ-ZAPBatys Qazaqstan oblysy
KZ-ZHAZhambyl oblysy
KZ-ZHEZhetysu oblysy

FAQ

How many subdivisions does Kazakhstan have?
Kazakhstan has 20 subdivisions defined in ISO 3166-2:KZ, including 3 citys, 17 regions.
What is the ISO 3166-2 code format for Kazakhstan?
Kazakhstan subdivision codes follow the format KZ-XX, where KZ is the country's alpha-2 code and XX is the subdivision identifier. For example, KZ-ABY represents Abai oblysy.
How to get Kazakhstan subdivisions in JavaScript?
Install @koshmoney/countries via npm, then use subdivision.getByCountry('KZ') to get all 20 subdivisions.
View Kazakhstan country page →Country code converter →

Use Kazakhstan subdivision data in your project

Get all 20 Kazakhstan subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.

npm install @koshmoney/countries