/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}