🇵🇰Pakistan Subdivisions
All 8 Pakistan subdivisions with ISO 3166-2:PK codes - Asia / Southern Asia
Total
8 subdivisions
Types
Federal capital territory, Pakistan administered area, Province, Territory
ISO Standard
ISO 3166-2:PK
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Pakistan subdivisions
const subs = subdivision.getByCountry('PK');
// => 8 subdivisions
// Look up a specific subdivision
subdivision.get('PK-BA');
// => { code: 'PK-BA', name: 'Balochistan', type: 'Province' }
// Validate a subdivision code
subdivision.isValidCode('PK-BA'); // true
subdivision.isValidRegion('PK', 'BA'); // trueTree-Shaking Tip
Import only Pakistan subdivisions to minimize bundle size:
// Import only Pakistan subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/PK';
Object.entries(subdivisions);
// => 8 entriesAll Pakistan Subdivisions
Federal capital territorys (1)
| Code | Name |
|---|---|
| PK-IS | Islāmābād |
Pakistan administered areas (2)
| Code | Name |
|---|---|
| PK-GB | Gilgit-Baltistān |
| PK-JK | Azad Kashmir |
Provinces (4)
| Code | Name |
|---|---|
| PK-BA | Balochistan |
| PK-KP | Khaībar Pakhtūnkhwā |
| PK-PB | Panjāb |
| PK-SD | Sindh |
Territorys (1)
| Code | Name |
|---|---|
| PK-TA | Federally Administered Tribal Areas |
FAQ
- How many subdivisions does Pakistan have?
- Pakistan has 8 subdivisions defined in ISO 3166-2:PK, including 1 federal capital territorys, 2 pakistan administered areas, 4 provinces, 1 territorys.
- What is the ISO 3166-2 code format for Pakistan?
- Pakistan subdivision codes follow the format PK-XX, where PK is the country's alpha-2 code and XX is the subdivision identifier. For example, PK-BA represents Balochistan.
- How to get Pakistan subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('PK')to get all 8 subdivisions.
Use Pakistan subdivision data in your project
Get all 8 Pakistan subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries