Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/openstreetmap-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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