/v1/airflow
Airflow required for a sensible load
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/hvacload-api/v1/airflow" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hvacload-api/v1/airflow", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hvacload-api/v1/airflow");
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/hvacload-api/v1/airflow",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Airflow CFM = sensible load ÷ (1.08 × ΔT), the supply air needed to meet a sensible load at a chosen temperature difference. A bigger supply-to-room ΔT (cooler supply) needs less air — but too cold dumps and feels draughty, so comfort cooling usually runs ~18–22 °F below room. This sets the fan and duct size; check it against the ~400 CFM per ton rule for a sanity check.",
"inputs": {
"delta_t_f": 20,
"sensible_btu_hr": 43200
},
"required_cfm": 2000
},
"meta": {
"timestamp": "2026-06-07T08:18:02.069Z",
"request_id": "b294e761-8728-4c95-91e0-851349498396"
},
"status": "ok",
"message": "Required airflow",
"success": true
}