Developer Portal
Connector Guides
API ReferenceConsole

WellStat

WellStatLogo

The WellStat Connector provides access to air quality data, such as Co2 levels, particulate matter levels, and humidity.

Use Cases

Potential use cases include:

  • Tracking and analyzing indoor air quality data for workplace compliance standards
  • Improve air quality inside a building to improve employee health and reduce time away
  • Reduce the likelihood of COVID-19 transmission in office by informing ventilation and filtration requirements continually and in real time

Configuration

The authorization for the WellStat Connector utilizes the same username and password as the iES Mach platform, as WellStat is a part of iES Mach.

CredentialDescription
UsernameYour iES Mach username
PasswordYour iES Mach password

Sample Code

Here's an example that will retrieve the latest value from all the Co2 Sensors for a particular space, in this case a Lobby. Included is also the type field, so you can see the hierarchy of related types, like Air_Quality_Sensor, that could be used for a broader search:

Request Response
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  spaces(filter: {id: {eq: "SPCCa4P3FQYccWCrGHQQoAbC3"}}) {
    name
    points(filter: {type: {eq: "CO2_Sensor"}}) {
      id
      name
      type
      series(latest: true) {
        timestamp
        value {
          float64Value
        }
      }
    }
  }
}