/v1/meta
Totals, discovery methods & source
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/exoplanets-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/exoplanets-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/exoplanets-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/exoplanets-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"total": 6291,
"fields": [
"id",
"name",
"host_star",
"discovery",
"orbital_period_days",
"radius_earth",
"mass_earth",
"distance_ly",
"equilibrium_temp_k"
],
"source": "NASA Exoplanet Archive",
"host_stars": 4709,
"discovery_methods": [
{
"count": 6,
"method": "Astrometry"
},
{
"count": 1,
"method": "Disk Kinematics"
},
{
"count": 17,
"method": "Eclipse Timing Variations"
},
{
"count": 97,
"method": "Imaging"
},
{
"count": 278,
"method": "Microlensing"
},
{
"count": 9,
"method": "Orbital Brightness Modulation"
},
{
"count": 8,
"method": "Pulsar Timing"
},
{
"count": 2,
"method": "Pulsation Timing Variations"
},
{
"count": 1181,
"method": "Radial Velocity"
},
{
"count": 4651,
"method": "Transit"
},
{
"count": 41,
"method": "Transit Timing Variations"
}
]
},
"meta": {
"timestamp": "2026-05-31T02:25:28.895Z",
"request_id": "ce98662f-23ce-4c5b-a9ab-d33e9d1dfd7f"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}