Geo Reverse Postal Code

Get place information using a postal or ZIP code — including city, state, country, and coordinates. Ideal for address autofill, validation, and logistics applications.

🧾 Overview – Fetch Place from Postal Code

Use this API to retrieve detailed geographic information using just a postal code. It translates postal codes into meaningful location data, helping with address standardization, form enhancements, and geo-tagging.

🚀 How to get Place from Postal Code

To get Geo Reverse Postal Code, make a POST request to the following endpoint:

POSThttps://geo.quantaapi.com/api/v1/reverse-postal-code

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

postal_code

Integer

search by postal code

Response

{
    "status": "success",
    "message": "Places fetched successfully.",
    "code": 200,
    "type": "SUCCESS",
    "data": {
        "place": "Kotwali Tehsil",
        "city": "Kotwali Tehsil",
        "state": "Delhi",
        "state_district": "Central Delhi",
        "country": "India",
        "country_code": "IN",
        "postcode": "110006",
        "lat": "28.6559843",
        "lon": "77.2316234",
        "display_name": "110006, Old Delhi, Delhi, Kotwali Tehsil, Central Delhi, Delhi, India"
    },
    "input": {
        "postal_code": "110006"
    },
    "info": {
        "timestamp_utc": "2025-06-07 12:24:52",
        "version": "v1.0",
        "credits_used": 1,
        "response_time": 703.29
    }
}

Last updated