Geo Reverse Place

Get detailed place information by providing geographic coordinates — including city, state, country, and timezone — ideal for location-based services and user geolocation features.

🧾 Overview – Get Place from Coordinates

Use this API to reverse geocode latitude and longitude into human-readable place information. It’s perfect for displaying location names based on map interactions, tracking features, or converting GPS data into structured locations.

🚀 How to get Geo Reverse Place

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

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

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

lat

float

search by Latitude

lon

float

search by Longitude

Response

{
    "status": "success",
    "message": "Places fetched successfully.",
    "code": 200,
    "type": "SUCCESS",
    "data": {
        "place": "San Francisco",
        "city": "San Francisco",
        "state": "California",
        "state_district": "--",
        "country": "United States",
        "country_code": "US",
        "postcode": "94143",
        "lat": "37.7741237",
        "lon": "-122.4313968",
        "display_name": "726, Oak Street, Lower Haight, Western Addition, San Francisco, California, 94143, United States"
    },
    "input": {
        "lat": "37.773972",
        "lon": "-122.431297"
    },
    "info": {
        "timestamp_utc": "2025-06-07 11:57:10",
        "version": "v1.0",
        "credits_used": 1,
        "response_time": 1208.52
    }
}

Last updated