/v1/meteorite
Meteorite by name or id
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/meteorites-api/v1/meteorite" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/meteorites-api/v1/meteorite", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/meteorites-api/v1/meteorite");
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/meteorite",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"meteorite": {
"id": "11890",
"lat": -19.58333,
"lon": 17.91667,
"fall": "Found",
"mass": 60000000,
"name": "Hoba",
"year": 1920,
"recclass": "Iron, IVB"
}
},
"meta": {
"timestamp": "2026-06-09T03:03:49.340Z",
"request_id": "58a3011e-d52f-432f-94a2-09596f936b81"
},
"status": "ok",
"message": "Meteorite retrieved successfully",
"success": true
}