Vai al contenuto
GET /v1/wind-chill

Wind chill

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/apparenttemp-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

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