Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/openstreetmap-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}