Zum Inhalt springen
GET /v1/notes

Map notes in a bounding box

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/openstreetmap-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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
…