Landmark API

Search for well-known landmarks, buildings, and places of interest by name. Returns coordinates and formatted address.

Try in Playground →

Endpoint

GET/v4/landmarks.json

Authentication

Include your token in the request header:

X-Authorization-Token: your_token

Parameters

NameTypeDescription
querystringName of the landmark to search
latitudenumberBias results near this latitude
longitudenumberBias results near this longitude

Code Examples

curl "https://apihub.latlong.ai/v4/landmarks.json?query=VALUE" \
  -H "X-Authorization-Token: YOUR_TOKEN"

Example Response

JSON
{
  "status": "success",
  "code": 1001,
  "data": [
    {
      "name": "India Gate",
      "latitude": 28.6129,
      "longitude": 77.2295,
      "address": "Rajpath, New Delhi, Delhi 110001"
    }
  ]
}