/v1/exoplanet
A single exoplanet by name or id
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}