🇰🇿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'); // trueTree-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 entriesAll Kazakhstan Subdivisions
Citys (3)
| Code | Name |
|---|---|
| KZ-ALA | Almaty |
| KZ-AST | Astana |
| KZ-SHY | Shymkent |
Regions (17)
| Code | Name |
|---|---|
| KZ-ABY | Abai oblysy |
| KZ-AKM | Akmolinskaja oblast' |
| KZ-AKT | Aktjubinskaja oblast' |
| KZ-ALM | Almatinskaja oblast' |
| KZ-ATY | Atyraū oblysy |
| KZ-KAR | Karagandinskaja oblast' |
| KZ-KUS | Kostanajskaja oblast' |
| KZ-KZY | Kyzylordinskaja oblast' |
| KZ-MAN | Mangghystaū oblysy |
| KZ-PAV | Pavlodar oblysy |
| KZ-SEV | Severo-Kazahstanskaja oblast' |
| KZ-TUR | Turkistan oblysy |
| KZ-ULY | Ulytau oblysy |
| KZ-VOS | Shyghys Qazaqstan oblysy |
| KZ-ZAP | Batys Qazaqstan oblysy |
| KZ-ZHA | Zhambyl oblysy |
| KZ-ZHE | Zhetysu 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/countriesvia npm, then usesubdivision.getByCountry('KZ')to get all 20 subdivisions.
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