Μετάβαση στο περιεχόμενο
GET /v1/min-wind

Minimum wind to lift off

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/kite-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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