/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/meteorites-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/meteorites-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/meteorites-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/meteorites-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"fell": 1107,
"found": 44609,
"service": "meteorites-api",
"geocoded": 32186,
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/rank": "Rank by mass or year (by=mass|year, order, limit).",
"GET /v1/year": "Meteorites recovered in a year (year=, e.g. 1947).",
"GET /v1/class": "Meteorites of a classification (class=, e.g. L5), heaviest first.",
"GET /v1/nearby": "Meteorites within radius_km of lat=/lon= (great-circle, nearest first).",
"GET /v1/search": "Search meteorites by name (q=).",
"GET /v1/meteorite": "Meteorite by name (name=, e.g. Hoba) or NASA id (id=)."
},
"year_range": [
601,
2013
],
"description": "NASA catalogue of 45,000+ meteorites recovered on Earth: name, id, classification, mass, fell/found, year and recovery coordinates. Look up by name or id, find meteorites near a coordinate (haversine), rank by mass or year, list a class or year, or search. Distinct from asteroids-api and closeapproach-api. No key.",
"distinct_classes": 454,
"rankable_metrics": [
"mass",
"year"
],
"total_meteorites": 45716
},
"meta": {
"timestamp": "2026-06-09T03:03:49.923Z",
"request_id": "449435e3-153f-4a00-8ad0-cbead3d904cf"
},
"status": "ok",
"message": "Meta",
"success": true
}