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.jsonAuthentication
Include your token in the request header:
X-Authorization-Token: your_token
Parameters
| Name | Type | Description |
|---|---|---|
| query | string | Name of the landmark to search |
| latitude | number | Bias results near this latitude |
| longitude | number | Bias 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"
}
]
}
