/v1/notes
Map notes in a bounding box
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/openstreetmap-api/v1/notes" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/openstreetmap-api/v1/notes", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/openstreetmap-api/v1/notes");
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",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"bbox": {
"top": 51.52,
"left": -0.13,
"right": -0.11,
"bottom": 51.5
},
"count": 25,
"notes": [
{
"id": 5324412,
"lat": 51.5133776,
"lon": -0.1282109,
"url": "https://www.openstreetmap.org/note/5324412",
"text": "This place does not exist: \"There's something called Seven Dials now\" A CoMaps user reported that the POI was visible on the map (see snapshot date below), but was not found on the ground. OSM snapshot date: 2026-05-04T17:33:07Z POI name: Tristan Bates Theatre POI types: amenity-theatre #CoMaps andr",
"status": "closed",
"comments": 4,
"closed_at": "2026-06-04 12:50:41 UTC",
"date_created": "2026-06-03 08:39:14 UTC"
},
{
"id": 5317400,
"lat": 51.51386,
"lon": -0.1286213,
"url": "https://www.openstreetmap.org/note/5317400",
"text": "\"They moved on a different road, this is not the current location. I've updated road and postocode.\" OSM snapshot date: 2026-05-04T17:33:07Z POI name: Nisbets POI types: wheelchair-no shop-kitchen #CoMaps android 2026.05.06-11-FDroid",
"status": "closed",
"comments": 4,
"closed_at": "2026-06-04 12:49:30 UTC",
"date_created": "2026-05-30 10:46:49 UTC"
},
{
"id": 5324413,
"lat": 51.5132755,
"lon": -0.1279229,
"url": "https://www.openstreetmap.org/note/5324413",
"text": "\"That's where Nisbets moved, I have another note open where I've updated the previous location.\" OSM snapshot date: 2026-05-04T17:33:07Z POI has no name POI types: shop-kitchen #CoMaps android 2026.05.06-11-FDroid",
"status": "closed",
"comments": 2,
"closed_at": "2026-06-04 12:48:56 UTC",
"date_created": "2026-06-03 08:39:15 UTC"
},
{
"id": 4291429,
"lat": 51.5104518,
"lon": -0.1218635,
"url": "https://www.openstreetmap.org/note/4291429",
"text": "Has Robert Dyas closed here and is it now Ryman? https://www.ryman.co.uk/storefinder/strand/",
"status": "open",
"comments": 2,
"closed_at": null,
"date_created": "2024-06-14 11:31:16 UTC"
},
{
"id": 5319078,
"lat": 51.5134007,
"lon": -0.1281814,
"url": "https://www.openstreetmap.org/note/5319078",
"text": "Actors Centre seems to be closed. Is anything there now? (Check also at West Street side).",
"status": "open",
"com
…