Free, fast, and real-time JSON API access for postal data automation.
Send a standard GET request to the following endpoint structure with a 6-digit PIN code parameter:
| Parameter | Type | Required | Description |
|---|---|---|---|
| pincode | String / Integer | Yes | The 6-digit Postal Index Number (e.g., 504307) |
Try hitting this live test request URL in your application setup:
https://pincode.npdigitech.com/api-doc.php?pincode=504307
The service structures output automatically inside a valid arrays block response format:
{
"status": "success",
"message": "Data found",
"count": 1,
"data": [
{
"pincode": "504307",
"city_village": "Adegaon",
"taluk": "Boath",
"district": "Adilabad",
"state": "TELANGANA"
}
]
}
If a record is missing or query syntax is wrong, clean status indicators return promptly:
{
"status": "error",
"message": "No records found for this PIN code",
"count": 0,
"data": []
}