Ir al contenido
GET /v1/rvalue

Assembly R-value & U-value

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/uvalue-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}