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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/uvalue-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/uvalue-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/uvalue-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/uvalue-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "api": "uvalue",
        "note": "U-value / R-value building-fabric thermal maths — computed locally and deterministically, no key, no third-party service.",
        "defaults": {
            "rse": 0.04,
            "rsi": 0.13
        },
        "endpoints": [
            "/v1/rvalue",
            "/v1/layer",
            "/v1/heatloss",
            "/v1/meta"
        ],
        "materials": [
            "concrete",
            "reinforced_concrete",
            "aerated_concrete",
            "brick",
            "brickwork",
            "stone",
            "sandstone",
            "timber",
            "softwood",
            "hardwood",
            "plywood",
            "osb",
            "plasterboard",
            "gypsum",
            "plaster",
            "render",
            "screed",
            "mineral_wool",
            "glass_wool",
            "rock_wool",
            "sheeps_wool",
            "eps",
            "xps",
            "pir",
            "pur",
            "phenolic",
            "cellulose",
            "wood_fibre",
            "cork",
            "glass",
            "steel",
            "aluminium",
            "plasterboard_foil"
        ]
    },
    "meta": {
        "timestamp": "2026-06-04T10:18:50.683Z",
        "request_id": "066fd9a0-3d00-4146-b43b-e606bff262b0"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}