OnCoord logo

POI Nearby Search

The POI Nearby API returns points of interest of a specific category within a given radius of any coordinate across Latin America. Results include the name, distance, coordinates, and address of each matching venue.

Click anywhere on the map — or type coordinates below — then select a category and radius to search. Categories use raw OSM key:value tags. Results will be empty for oceans or locations outside the coverage area.

This API is ideal for powering “restaurants near me” searches using amenity:restaurant, or finding supermarkets in a city (e.g. Mérida, Mexico at 20.960, -89.614) using shop:supermarket.

What the Response Tells You

{
  "total": 2,
  "results": [
    {
      "name": "Domino's",
      "category": ["food", "retail", "amenity:fast_food", "cuisine:pizza"],
      "distance_m": 724,
      "center_point": { "lon": -93.103771, "lat": 16.75194 },
      "address": { "zip": "29000" }
    },
    ...
  ]
}
total — number of matching venues found within the search radius.

name — the venue name.

category — all tags assigned to the venue. The queried category will always be present; additional tags provide broader context (e.g. a pizza restaurant will also carry food and retail).

distance_m — straight-line distance in metres from the queried point to the venue.

center_point — the coordinates of the venue.

address — partial address data where available. Coverage varies by country and data quality.

×
Format: lat,lon or lat/lon or lat lon. Click the map to autofill.