/v1/meta
Spec
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/apparenttemp-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apparenttemp-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apparenttemp-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"notes": "Heat index & wind chill in °F (also °C); humidex in °C. Heat index = Rothfusz regression; wind chill = 2001 NWS formula; humidex = T + 0.5555·(e − 10). Human-comfort estimates in shade. For dew point / moist-air properties use a psychrometric API.",
"service": "apparenttemp-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/humidex": "Canadian humidex from temperature (°C) and humidity.",
"GET /v1/heat-index": "NWS heat index from temperature (°F) and humidity.",
"GET /v1/wind-chill": "Wind chill from temperature (°F) and wind speed (mph)."
},
"description": "Apparent ('feels-like') temperature maths: the NWS heat index, the NWS/Environment Canada wind chill, and the Canadian humidex."
},
"meta": {
"timestamp": "2026-06-06T23:53:54.625Z",
"request_id": "fa533354-b68f-4c03-a9ce-679a86d5017d"
},
"status": "ok",
"message": "Meta",
"success": true
}