Aller au contenu
GET /v1/exoplanet

A single exoplanet by name or id

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/exoplanets-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/exoplanets-api/v1/exoplanet" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/exoplanets-api/v1/exoplanet", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/exoplanets-api/v1/exoplanet");
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/exoplanets-api/v1/exoplanet",
    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": {
        "id": 3400,
        "name": "Proxima Cen b",
        "discovery": {
            "year": 2016,
            "method": "Radial Velocity",
            "facility": "European Southern Observatory"
        },
        "host_star": "Proxima Cen",
        "mass_earth": 1.055,
        "distance_ly": 4.24,
        "radius_earth": 1.02,
        "equilibrium_temp_k": 218,
        "orbital_period_days": 11.1846
    },
    "meta": {
        "timestamp": "2026-05-31T02:25:28.687Z",
        "request_id": "3e2721f2-8051-4623-a281-9a2ca53d63cf"
    },
    "status": "ok",
    "message": "Exoplanet retrieved",
    "success": true
}