Naar de inhoud
GET /v1/escape

Escape velocity

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/orbital-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}