/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/glideratio-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/glideratio-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/glideratio-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/glideratio-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"notes": "ft, nm, km, kt, fpm. distance = height × ratio; ratio = airspeed ÷ sink (1 kt = 101.27 ft/min); height needed = distance ÷ ratio. Still-air estimates — adjust for wind and configuration. For density altitude use a density-altitude API; for wind components a crosswind API.",
"service": "glideratio-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/reach": "Whether a field is within glide range, and the arrival height.",
"GET /v1/glide-ratio": "Glide ratio (L/D) and glide angle from airspeed and sink rate.",
"GET /v1/glide-distance": "Still-air glide distance from height and glide ratio."
},
"description": "Glide-performance maths: glide distance from height and ratio, glide ratio from airspeed and sink, and airfield reachability."
},
"meta": {
"timestamp": "2026-06-07T08:18:05.920Z",
"request_id": "9b43b575-a3cb-44fb-8a1a-f92ee1e78d6a"
},
"status": "ok",
"message": "Meta",
"success": true
}