Adds lighting, equipment, people, envelope and ventilation heat flows at one supplied oper
Adds lighting, equipment, people, envelope and ventilation heat flows at one supplied operating point, and converts evapotranspiration into a latent moisture-removal load. It is a steady-state sizing estimate without duct losses, thermal mass, equipment curves, controls, infiltration uncertainty or psychrometric state validation.
4000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-01
updated
Provider
agri.halowerk.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "4000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"envelope_area_m2": 1250,
"envelope_u_value_w_per_m2k": 0.42,
"equipment_kw": 14,
"evapotranspiration_l_per_hour": 48,
"indoor_setpoint_c": 22,
"lighting_kw": 82,
"outdoor_temperature_c": 31,
"people_count": 5,
"sensible_heat_per_person_w": 90,
"ventilation_m3_per_s": 1.8
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"envelope_area_m2": {
"maximum": 100000000,
"minimum": 0,
"type": "number"
},
"envelope_u_value_w_per_m2k": {
"maximum": 100,
"minimum": 0,
"type": "number"
},
"equipment_kw": {
"maximum": 1000000,
"minimum": 0,
"type": "number"
},
"evapotranspiration_l_per_hour": {
"maximum": 100000000,
"minimum": 0,
"type": "number"
},
"indoor_setpoint_c": {
"maximum": 60,
"minimum": -50,
"type": "number"
},
"lighting_kw": {
"maximum": 1000000,
"minimum": 0,
"type": "number"
},
"outdoor_temperature_c": {
"maximum": 100,
"minimum": -100,
"type": "number"
},
"people_count": {
"maximum": 1000000,
"minimum": 0,
"type": "integer"
},
"sensible_heat_per_person_w": {
"maximum": 2000,
"minimum": 0,
"type": "number"
},
"ventilation_m3_per_s": {
"maximum": 1000000,
"minimum": 0,
"type": "number"
}
},
"required": [
"lighting_kw",
"equipment_kw",
"people_count",
"sensible_heat_per_person_w",
"envelope_area_m2",
"envelope_u_value_w_per_m2k",
"outdoor_temperature_c",
"indoor_setpoint_c",
"ventilation_m3_per_s",
"evapotranspiration_l_per_hour"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agri.halowerk.com/v1/vertical-farm-hvac" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agri.halowerk.com/v1/vertical-farm-hvac");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agri.halowerk.com/v1/vertical-farm-hvac")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15271.json, and this resource appears in /discovery/resources and /discovery/search.