Skip to content
GET /v1/year

Meteorites recovered in a year

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/meteorites-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "year": 1947,
        "count": 19,
        "total": 19,
        "meteorites": [
            {
                "id": "23593",
                "lat": 46.16,
                "lon": 134.65333,
                "fall": "Fell",
                "mass": 23000000,
                "name": "Sikhote-Alin",
                "year": 1947,
                "recclass": "Iron, IIAB"
            },
            {
                "id": "24326",
                "lat": -19.3,
                "lon": 127.76667,
                "fall": "Found",
                "mass": 760000,
                "name": "Wolf Creek",
                "year": 1947,
                "recclass": "Iron, IIIAB"
            },
            {
                "id": "371",
                "lat": 33.63333,
                "lon": -104.26667,
                "fall": "Found",
                "mass": 75000,
                "name": "Acme",
                "year": 1947,
                "recclass": "H5"
            },
            {
                "id": "11840",
                "lat": 35.95,
                "lon": -84.56667,
                "fall": "Found",
                "mass": 30000,
                "name": "Harriman (Of)",
                "year": 1947,
                "recclass": "Iron, IVA"
            },
            {
                "id": "5289",
                "lat": -22.46667,
                "lon": -42.21667,
                "fall": "Found",
                "mass": 25000,
                "name": "Casimiro de Abreu",
                "year": 1947,
                "recclass": "Iron, IIIAB"
            },
            {
                "id": "22584",
                "lat": 42.475,
                "lon": -5.33333,
                "fall": "Fell",
                "mass": 17300,
                "name": "Reliegos",
                "year": 1947,
                "recclass": "L5"
            },
            {
                "id": "11886",
                "lat": 39.36667,
                "lon": -99.85,
                "fall": "Found",
                "mass": 11700,
                "name": "Hill City",
                "year": 1947,
                "recclass": "Iron, IVA"
            },
            {
                "id": "7760",
                "lat": 40.78167,
                "lon": -96.47167,
                "fall": "Fell",
                "mass": 10000,
                "name": "Eagle",
                "year": 1947,
                "recclass": "EL6"
            },
            {
                "id": "12234",
                "lat": 44.64694,
                "lon": -85.13667,
                "fall": "Found",
                "mass": 9399,
                "name": "Kalkaska",
                "year": 1947,
                "recclass": "Iron, IIIAB"
            },
            {
                "id": "2293",
                "lat": 40.8,
                "lon": -99.2,
                "fall": "Found",
                "mass": 8500,
                "name": "Amherst",
                "year": 1947,
        
…