Skip to content
GET /v1/min-wind

Minimum wind to lift off

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/kite-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "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
}