Pakistan Postal Code API

Look up postal codes in Pakistan with PostalDataPI — sub-10ms responses, one API key for 70+ countries.

Country Code

PK

Format

NNNNN

Example

44000

About Pakistan postal codes

Pakistan uses 5-digit postal codes. Islamabad codes start with 44, Karachi with 74-75.

Local term: postal code | Regex pattern: ^\d{5}$

API Usage Examples

cURL

curl -X POST https://postaldatapi.com/api/lookup \
  -H "Content-Type: application/json" \
  -d '{"zipcode": "44000", "country": "PK", "apiKey": "YOUR_API_KEY"}'

Python

from postaldatapi import PostalDataPI

client = PostalDataPI(api_key="YOUR_API_KEY")
result = client.lookup("44000", country="PK")
print(result.place_name, result.latitude, result.longitude)

Node.js

import { PostalDataPI } from 'postaldatapi';

const client = new PostalDataPI({ apiKey: 'YOUR_API_KEY' });
const result = await client.lookup('44000', { country: 'PK' });
console.log(result.placeName, result.latitude, result.longitude);

$0.000028 per query

Same price for Pakistan and all 70+ countries. No tiers, no per-country pricing.

Pakistan Postal Code API | PostalDataPI