Zum Inhalt springen
GET /v1/meta

Spec

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/apparenttemp-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}