Find Places

Get detailed information about places based on user input — including cities, landmarks, and notable locations, with geographic coordinates and time zone details.

🧾 Overview – Fetch Location Details

Use this API to retrieve detailed information about a location using a name or partial query. It helps in identifying places with geographic coordinates, country, and other details—ideal for applications needing precise place identification, alignment, or location-based services.

🚀 How to get Place Details

To get Place Details, make a POST request to the following endpoint:

POSThttps://geo.quantaapi.com/api/v1/places

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

place

string

search by name

Response

{
    "status": "success",
    "message": "Places fetched successfully.",
    "code": 200,
    "type": "SUCCESS",
    "data": [
        {
            "place": "New Delhi",
            "city": "New Delhi",
            "state": "Delhi",
            "state_district": "Central Delhi",
            "country": "India",
            "country_code": "IN",
            "postcode": "110006",
            "lat": "28.6430858",
            "lon": "77.2192671",
            "display_name": "New Delhi, Foot Over Bridge 1, Ram Nagar, New Delhi Railway Station, Delhi, Kotwali Tehsil, Central Delhi, Delhi, 110006, India"
        },
        {
            "place": "New Delhi",
            "city": "New Delhi",
            "state": "Delhi",
            "state_district": "--",
            "country": "India",
            "country_code": "IN",
            "postcode": "--",
            "lat": "28.6138954",
            "lon": "77.2090057",
            "display_name": "New Delhi, Delhi, India"
        }
    ],
    "input": {
        "place": "New delhi"
    },
    "info": {
        "timestamp_utc": "2025-06-07 11:52:04",
        "version": "v1.0",
        "credits_used": 1,
        "response_time": 1339.94
    }
}

Last updated