Aller au contenu
GET /v1/nearby

Meteorites near a coordinate

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/meteorites-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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