GET
/v4/landmarks.jsonLandmark API
Search for well-known landmarks, buildings, and places of interest by name. Returns coordinates and formatted address.
Try in Playground →Authentication
Include your API token in the request header:
X-Authorization-Token: your_token_here
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | Required | Name of the landmark to search |
| latitude | number | Optional | Bias results near this latitude |
| longitude | number | Optional | Bias results near this longitude |
Code Examples
curl "https://apihub.latlong.ai/v4/landmarks.json?query=VALUE" \ -H "X-Authorization-Token: YOUR_TOKEN"
Response
JSON200 OK
{
"status": "success",
"code": 1001,
"data": [
{
"name": "India Gate",
"latitude": 28.6129,
"longitude": 77.2295,
"address": "Rajpath, New Delhi, Delhi 110001"
}
]
}Ready to try it?
Test this API interactively in the playground.

