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.json

Authentication

Include your token in the request header:

X-Authorization-Token: your_token

Parameters

NameTypeDescription
latitudenumberCenter latitude
longitudenumberCenter longitude
categorystringPOI category (e.g. restaurant, hospital, atm)
radiusnumberSearch 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"
    }
  ]
}