⚡ India PIN Code Developer API

Free, fast, and real-time JSON API access for postal data automation.

← Back to Search Engine

API Request Endpoint

Send a standard GET request to the following endpoint structure with a 6-digit PIN code parameter:

https://pincode.npdigitech.com/api-doc.php?pincode={6_digit_pincode}

Request Parameters

Parameter Type Required Description
pincode String / Integer Yes The 6-digit Postal Index Number (e.g., 504307)

Live Example Link

Try hitting this live test request URL in your application setup:

https://pincode.npdigitech.com/api-doc.php?pincode=504307

Expected JSON Response Body

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"
        }
    ]
}

Error Response Structure

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": []
}