probe-gate
Demonstrates retrieving a complete way including all referenced nodes with their latitude/longitude coordinates, enabling full geometry reconstruction.
curl 'https://api.openstreetmap.org/api/0.6/way/613529174/full'
import requests
resp = requests.get("https://api.openstreetmap.org/api/0.6/way/613529174/full")
data = resp.json()
import zingu_apis
api = zingu_apis.api("openstreetmap")
result = api.fetch("way/{id}/full")
for item in result:
print(item)
const resp = await fetch("https://api.openstreetmap.org/api/0.6/way/613529174/full");
const data = await resp.json();