Skip to content

Infinitude Status API

Matt Smith edited this page Mar 7, 2023 · 1 revision

All requests are relative to your instance (IP Address, Port) of Infinitude

Get system status report

/api/status/<path> Returns JSON-structured system status attributes (some overlap with /api/config)

Examples

/api/status returns full system status

If the optional path parameter is specified, drill down to more targeted data.

  • /api/status/1 returns status of Zone 1

{"clsp":["74.0"],"currentActivity":["away"],"damperposition":["15"],"enabled":["on"],"fan":["med"],"hold":["off"],"htsp":["69.0"],"id":"1","name":["ZONE 1"],"otmr":[{}],"rh":["50"],"rt":["73.0"],"zoneconditioning":["idle"]}

  • /api/status/1/rh returns the value for the rh attribute of zone 1

{"rh":50}

Note for parsing/ingesting this data:

  • Unless requesting individual values, each value is a string in a single-node JSON array due to the native XML that the Infinity system itself uses.
  • Data returned will vary depending on the configuration and capabilities of your HVAC system.