Zum Inhalt springen
GET /v1/rvalue

Assembly R-value & U-value

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

Beispiel-Response

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

{
    "data": {
        "layers": [
            {
                "index": 0,
                "r_value": 2.857143,
                "material": "mineral_wool",
                "thickness_m": 0.1,
                "conductivity_w_mk": 0.035
            }
        ],
        "formula": "R_total = Rsi + ΣR_layer + Rse; U = 1/R_total; R_layer = thickness/conductivity.",
        "layer_count": 1,
        "u_value_w_m2k": 0.330344,
        "r_value_imperial": 17.188915,
        "layers_resistance": 2.857143,
        "r_value_rsi_m2k_w": 3.027143,
        "exterior_surface_resistance_rse": 0.04,
        "interior_surface_resistance_rsi": 0.13
    },
    "meta": {
        "timestamp": "2026-06-04T10:18:50.590Z",
        "request_id": "eca16a73-744b-473e-a98e-66265e3467f3"
    },
    "status": "ok",
    "message": "Assembly R-value & U-value",
    "success": true
}