/v1/min-wind
Minimum wind to lift off
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}