LatLong
GET/v4/point_of_interest.json

Point of Interest API

Search for nearby points of interest like restaurants, hospitals, ATMs, and more by category and location.

Try in Playground →

Authentication

Include your API token in the request header:

X-Authorization-Token: your_token_here

Parameters

NameTypeRequiredDescription
latitudenumberRequiredCenter latitude
longitudenumberRequiredCenter longitude
categorystringRequiredPOI category (e.g. restaurant, hospital, atm)
radiusnumberOptionalSearch 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"

Response

JSON200 OK
{
  "status": "success",
  "code": 1001,
  "data": [
    {
      "name": "Apollo Hospital",
      "category": "hospital",
      "latitude": 12.9698,
      "longitude": 77.5960,
      "distance": "320m"
    }
  ]
}

Ready to try it?

Test this API interactively in the playground.

Open Playground →