GET
/v4/pincode.jsonPostal Code API
Look up location details by postal code (pincode). Returns area name, city, state, and coordinates for the given pincode.
Try in Playground →Authentication
Include your API token in the request header:
X-Authorization-Token: your_token_here
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| pincode | string | Required | 6-digit postal code |
Code Examples
curl "https://apihub.latlong.ai/v4/pincode.json?pincode=VALUE" \ -H "X-Authorization-Token: YOUR_TOKEN"
Response
JSON200 OK
{
"status": "success",
"code": 1001,
"data": {
"pincode": "560001",
"area": "GPO Bangalore",
"city": "Bangalore",
"state": "Karnataka",
"latitude": 12.9716,
"longitude": 77.5946
}
}Ready to try it?
Test this API interactively in the playground.

