Local Places

Search for local places and businesses using Overpass (OpenStreetMap) API without API keys. Use when this capability is needed.

tomevault-io Updated

File contents

Local Places

Find nearby places using OpenStreetMap's Overpass API (no API key needed).

Search Nearby Restaurants

curl -s "https://overpass-api.de/api/interpreter" --data-urlencode 'data=[out:json];node["amenity"="restaurant"](around:1000,37.7749,-122.4194);out body 10;' | jq '.elements[] | {name: .tags.name, cuisine: .tags.cuisine}'

Find Cafes

curl -s "https://overpass-api.de/api/interpreter" --data-urlencode 'data=[out:json];node["amenity"="cafe"](around:500,37.7749,-122.4194);out body 5;' | jq '.elements[] | {name: .tags.name}'

Search by Name

curl -s "https://nominatim.openstreetmap.org/search?q=Central+Park&format=json&limit=5" | jq '.[].display_name'

Converted and distributed by TomeVault — claim your Tome and manage your conversions.

tomevault-io/skills-registry/tree/main/kody-w--openrappter--local-places commit 33e55f59a0

Frequently asked questions

npx skillmds@latest add tomevault-io/local-places-4