/v1/rank
Rank meteorites by metric
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/meteorites-api/v1/rank" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/meteorites-api/v1/rank", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/meteorites-api/v1/rank");
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/rank",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 10,
"order": "desc",
"metric": "mass",
"ranking": [
{
"id": "11890",
"lat": -19.58333,
"lon": 17.91667,
"fall": "Found",
"mass": 60000000,
"name": "Hoba",
"year": 1920,
"value": 60000000,
"position": 1,
"recclass": "Iron, IVB"
},
{
"id": "5262",
"lat": 76.13333,
"lon": -64.93333,
"fall": "Found",
"mass": 58200000,
"name": "Cape York",
"year": 1818,
"value": 58200000,
"position": 2,
"recclass": "Iron, IIIAB"
},
{
"id": "5247",
"lat": -27.46667,
"lon": -60.58333,
"fall": "Found",
"mass": 50000000,
"name": "Campo del Cielo",
"year": 1575,
"value": 50000000,
"position": 3,
"recclass": "Iron, IAB-MG"
},
{
"id": "5257",
"lat": 35.05,
"lon": -111.03333,
"fall": "Found",
"mass": 30000000,
"name": "Canyon Diablo",
"year": 1891,
"value": 30000000,
"position": 4,
"recclass": "Iron, IAB-MG"
},
{
"id": "2335",
"lat": 47,
"lon": 88,
"fall": "Found",
"mass": 28000000,
"name": "Armanty",
"year": 1898,
"value": 28000000,
"position": 5,
"recclass": "Iron, IIIE"
},
{
"id": "10912",
"lat": -25.5,
"lon": 18,
"fall": "Found",
"mass": 26000000,
"name": "Gibeon",
"year": 1836,
"value": 26000000,
"position": 6,
"recclass": "Iron, IVA"
},
{
"id": "5363",
"lat": 27,
"lon": -105.1,
"fall": "Found",
"mass": 24300000,
"name": "Chupaderos",
"year": 1852,
"value": 24300000,
"position": 7,
"recclass": "Iron, IIIAB"
},
{
"id": "16852",
"lat": -30.78333,
"lon": 127.55,
"fall": "Found",
"mass": 24000000,
"name": "Mundrabilla",
"year": 1911,
"value": 24000000,
"position": 8,
"recclass": "Iron, I
…