/v1/meta
Spec
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}