Zum Inhalt springen
GET /v1/escape

Escape velocity

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/orbital-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}