/v1/notes-search
Search map notes by text
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/openstreetmap-api/v1/notes-search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/openstreetmap-api/v1/notes-search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/openstreetmap-api/v1/notes-search");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/openstreetmap-api/v1/notes-search",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 25,
"notes": [
{
"id": 5342628,
"lat": 35.978108,
"lon": -82.847974,
"url": "https://www.openstreetmap.org/note/5342628",
"text": "\"Sign says Overlook Access. parking, picnic tables, pit toilet\" OSM snapshot date: 2026-05-03T01:52:52Z POI has no name POI types: tourism-picnic_site #organicmaps android 2026.05.08-1-Google",
"status": "open",
"comments": 1,
"date_created": "2026-06-13 13:59:34 UTC"
},
{
"id": 991969,
"lat": 50.9158036,
"lon": -0.4636574,
"url": "https://www.openstreetmap.org/note/991969",
"text": "Kithurst Park is a cul-de-sac and ends at this marker. The road to the West of the marker a spur off Kithurst Lane. So there is no access, except for pedestrians, between Kithurst Park and Kithurst Lane. For pedestrians there is a short 1 meter wide foot path.",
"status": "open",
"comments": 3,
"date_created": "2017-05-10 19:33:36 UTC"
},
{
"id": 5342595,
"lat": 47.5601715,
"lon": -1.0423821,
"url": "https://www.openstreetmap.org/note/5342595",
"text": "Parking vélo non repertorié - Poteau poteaux à trouver de l'autre côté des toilettes Photo·s et/ou informations disponibles ici: https://amenagements-cyclables.fr/fr/contributions/127886 (This note has been created from Geovelo)",
"status": "open",
"comments": 1,
"date_created": "2026-06-13 13:35:52 UTC"
},
{
"id": 5342584,
"lat": 47.5601569,
"lon": -1.0425912,
"url": "https://www.openstreetmap.org/note/5342584",
"text": "Parking vélo non repertorié - Poteau poteaux à trous Photo·s et/ou informations disponibles ici: https://amenagements-cyclables.fr/fr/contributions/127883 (This note has been created from Geovelo)",
"status": "open",
"comments": 1,
"date_created": "2026-06-13 13:32:56 UTC"
},
{
"id": 5341750,
"lat": 47.2824131,
"lon": 11.4241936,
"url": "https://www.openstreetmap.org/note/5341750",
"text": "Unable to answer \"What are the opening hours here?\" – Nova Park Innsbruck (Shopping Centre) – https://osm.org/way/888537708 via StreetComplete 63.1: There aren't really any opening hours for the entire complex...",
"status": "open",
"comments": 3,
"date_created": "2026-06-12 20:22:40 UTC"
},
{
"id": 5342460,
"lat": 50.0353305,
"lon": 19.
…