/v1/min-wind
Minimum wind to lift off
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/kite-api/v1/min-wind" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kite-api/v1/min-wind", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kite-api/v1/min-wind");
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/kite-api/v1/min-wind",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "The lightest wind that lifts a kite is where the aerodynamic lift just equals its weight: min wind = √(2 × mass × g ÷ (air density × area × lift coefficient)). A 200 g, 1.5 m² kite needs only about 1.6 m/s (6 km/h) — a gentle breeze. Lighter sails and bigger area drop the threshold, which is why featherweight kites fly when the flags are barely stirring and heavy ones sit on the ground.",
"inputs": {
"air_density": 1.225,
"kite_area_m2": 1.5,
"kite_weight_g": 200,
"lift_coefficient": 0.8
},
"min_wind_ms": 1.634,
"min_wind_kmh": 5.88
},
"meta": {
"timestamp": "2026-06-07T08:17:49.163Z",
"request_id": "bf9d2293-5c16-4060-80a3-73fc2d1ed4b1"
},
"status": "ok",
"message": "Minimum wind",
"success": true
}