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

Meteorites near a coordinate

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

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

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

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

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

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

curl "https://api.oanor.com/meteorites-api/v1/nearby" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/meteorites-api/v1/nearby", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/meteorites-api/v1/nearby");
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/meteorites-api/v1/nearby",
    headers={"x-oanor-key": "oanor_test_..."}
)

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

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

{
    "data": {
        "count": 4,
        "total": 4,
        "origin": {
            "lat": -19.58,
            "lon": 17.91
        },
        "radius_km": 300,
        "meteorites": [
            {
                "id": "11890",
                "lat": -19.58333,
                "lon": 17.91667,
                "fall": "Found",
                "mass": 60000000,
                "name": "Hoba",
                "year": 1920,
                "recclass": "Iron, IVB",
                "distance_km": 0.8
            },
            {
                "id": "10061",
                "lat": -18.5,
                "lon": 16,
                "fall": "Found",
                "mass": 110700,
                "name": "Etosha",
                "year": 1970,
                "recclass": "Iron, IC",
                "distance_km": 233.9
            },
            {
                "id": "18055",
                "lat": -18,
                "lon": 16,
                "fall": "Fell",
                "mass": 121.5,
                "name": "Ovambo",
                "year": 1900,
                "recclass": "L6",
                "distance_km": 267
            },
            {
                "id": "17999",
                "lat": -21.98333,
                "lon": 16.93333,
                "fall": "Found",
                "mass": 6580,
                "name": "Okahandja",
                "year": 1926,
                "recclass": "Iron, IIAB",
                "distance_km": 285.9
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:49.648Z",
        "request_id": "80ccb45c-01a7-4751-9199-943b34365384"
    },
    "status": "ok",
    "message": "Nearby meteorites retrieved successfully",
    "success": true
}