/v1/meta
Service metadata
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/openstreetmap-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/openstreetmap-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "OpenStreetMap official API 0.6 (live)",
"service": "openstreetmap-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/user": "A mapper's profile by user id (id=1).",
"GET /v1/notes": "Map notes in a bounding box (bbox=left,bottom,right,top, closed=days, limit).",
"GET /v1/changesets": "A user's recent changesets (user=Steve or uid=, limit)."
},
"description": "Live OpenStreetMap community and contribution data from the official OSM API: any mapper's profile by user id (display name, account age, total changesets and GPS traces, roles), a user's recent changesets (each edit batch with comment, editor, and create/modify/delete counts), and the open and resolved map notes inside a bounding box. Live, no key. Distinct from geocoding, routing and map-tile APIs that consume OSM data — this is the OSM community and editing activity itself.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:02:23.058Z",
"request_id": "a775bbd9-dcbd-4700-9bde-0b233c6ff5e9"
},
"status": "ok",
"message": "Meta",
"success": true
}