PostalPinCode
Look up any Indian PIN code's post offices in JSON
Resolves a six-digit Indian PIN code into every post office it covers, with district, division, circle, and delivery status. Also supports lookup by post-office name. Returns JSON with no key required.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.postalpincode.in/pincode/110001
[
{
"Message": "Number of pincode(s) found:21",
"Status": "Success",
"PostOffice": [
{
"Name": "Baroda House",
"BranchType": "Sub Post Office",
"DeliveryStatus": "Non-Delivery",
"District": "Central Delhi",
"State": "Delhi",
"Pincode": "110001"
}
]
}
]curl "https://api.postalpincode.in/pincode/110001"const res = await fetch("https://api.postalpincode.in/pincode/110001");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.postalpincode.in/pincode/110001")
print(res.json())/pincode/110001PROBEDLook up any Indian PIN code's post offices in JSON
/pincodePincode — documented GET route.
/pincode/1Pincode details by ID (example: 1).
/pincode?limit=10Pincode — documented GET route.
/pincode/search?q=testSearch by query parameters.
/pincode/%7BPINCODE%7D%3C/code%3E%3C/pre%3EPre%3E — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
PostalPinCode: common questions
Is PostalPinCode free to use?
Yes — PostalPinCode is a free transport API. Free tier: Free — no key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does PostalPinCode need an API key?
No — PostalPinCode needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call PostalPinCode from the browser?
Yes — PostalPinCode returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is PostalPinCode up right now?
PostalPinCode is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.