/v1/hill-sphere
Hill sphere
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/tidal-api/v1/hill-sphere" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tidal-api/v1/hill-sphere", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tidal-api/v1/hill-sphere");
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/tidal-api/v1/hill-sphere",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Hill sphere r_H ≈ a·(1−e)·(m/3M)^(1/3) — the region where a body's gravity dominates over the primary's, so it can hold moons. Earth's Hill sphere is about 1.5 million km.",
"inputs": {
"body_mass": 5.972e+24,
"eccentricity": 0,
"primary_mass": 1.989e+30,
"orbital_distance": 149600000000
},
"hill_radius_m": 1496417737.0931,
"hill_radius_km": 1496417.7371
},
"meta": {
"timestamp": "2026-06-05T19:50:33.973Z",
"request_id": "ecca9d55-eb41-4ba9-a474-fa0607b9f1d4"
},
"status": "ok",
"message": "Hill sphere",
"success": true
}