Reverse Geocode

Reverse Geocode Api returns the reverse geocoded address along with zipcode and nearest landmark for reference for the given geo point.

Click on a point on the map to see the results


To try this out- Click on "Try it out" button, fill in the required fields and click Execute

Reverse Geocode

Parameters

NameDescription
access_token *
string
(query)

Access token

latitude *
number
(query)

Latitude of the location

longitude *
number
(query)

Longitude of the location

details *
boolean
(query)

true/false

Responses

CodeDescription
200

successful operation

{
  "status": "Success",
  "data": {
    "address": "7th block ,Jayanagar ,Bengaluru,Karnataka",
    "pincode": "560070",
    "landmark": "< 0.5 km from Nanda Talkies Road-Ganesha Temple Signal, ~ 0.5 km from Yediyur Maternity Hospital Junction"
  }
}