Aller au contenu
GET /v1/wind-chill

Wind chill

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/apparenttemp-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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