/v1/escape
Escape velocity
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/orbital-api/v1/escape" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/orbital-api/v1/escape", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/orbital-api/v1/escape");
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/orbital-api/v1/escape",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"gm": 398600441800000,
"note": "Escape speed is √2 times the circular-orbit speed at the same radius.",
"radius": {
"m": 6371000,
"km": 6371
},
"formula": "escape = √(2·GM/r).",
"altitude": {
"m": 0,
"km": 0
},
"central_body": "earth",
"escape_speed": {
"m_s": 11186.136,
"km_h": 40270.09,
"km_s": 11.18614
},
"circular_speed": {
"m_s": 7909.792,
"km_h": 28475.25,
"km_s": 7.90979
}
},
"meta": {
"timestamp": "2026-06-04T01:59:01.994Z",
"request_id": "c704bb60-e53b-46e3-ad62-a57a24a44713"
},
"status": "ok",
"message": "Escape velocity",
"success": true
}