Developer Portal
Connector Guides
API ReferenceConsole

Awair

AwairLogo

Awair sensors provide indoor air quality sensor data, such as Co2 levels, particulate matter levels, and humidity.

Use Cases

Potential use cases include:

  • Track indoor air quality across your building
  • 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

This connector requires the following credentials:

CredentialDescription
OrgIDThe OrgID assigned to you from Awair
API KeyThe API Key provided by Awair

Mapped Concepts

Connector ConceptMapped Type
LocationBuilding, Floor, Space
DeviceAir_Quality_Sensing_Device
Device DataCO2_Level_Sensor, TVOC_Level_Sensor, PM_2_5_Level_Sensor, Relative_Humidity_Sensor, Sound_Pressure_Level_Sensor, Illuminance_Sensor, Temperature_Sensor

Sample Code

Here's an example showing how to access the air quality data from a particular sensor:

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