Skip to content
GET /v1/wind-chill

Wind chill

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/apparenttemp-api

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

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest 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
}