/v1/wind-chill
Wind chill
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/apparenttemp-api/v1/wind-chill" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apparenttemp-api/v1/wind-chill", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apparenttemp-api/v1/wind-chill");
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/apparenttemp-api/v1/wind-chill",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Wind chill is how cold it feels as wind strips the thin warm layer of air off the skin, from the 2001 NWS / Environment Canada formula (valid at or below 50 °F and above 3 mph). It speeds heat loss and frostbite but never cools an object below the actual air temperature — it is a human-comfort and frostbite measure, not a true temperature. At 0 °F and 15 mph it feels like about −19 °F.",
"inputs": {
"temp_f": 0,
"wind_mph": 15
},
"wind_chill_c": -28.6,
"wind_chill_f": -19.4,
"risk_category": "frostbite in 10–30 min — exposed skin at risk"
},
"meta": {
"timestamp": "2026-06-06T23:53:54.530Z",
"request_id": "a175a441-3a0a-4246-a62f-9f992e317be0"
},
"status": "ok",
"message": "Wind chill",
"success": true
}