Point of Interest API
Search for nearby points of interest like restaurants, hospitals, ATMs, and more by category and location.
Try in Playground →Endpoint
GET
/v4/point_of_interest.jsonAuthentication
Include your token in the request header:
X-Authorization-Token: your_token
Parameters
| Name | Type | Description |
|---|---|---|
| latitude | number | Center latitude |
| longitude | number | Center longitude |
| category | string | POI category (e.g. restaurant, hospital, atm) |
| radius | number | Search radius in meters (default: 1000) |
Code Examples
curl "https://apihub.latlong.ai/v4/point_of_interest.json?latitude=VALUE&longitude=VALUE&category=VALUE" \ -H "X-Authorization-Token: YOUR_TOKEN"
Example Response
JSON
{
"status": "success",
"code": 1001,
"data": [
{
"name": "Apollo Hospital",
"category": "hospital",
"latitude": 12.9698,
"longitude": 77.5960,
"distance": "320m"
}
]
}
