Indoor AQI

The Indoor AQI (Air Quality Index) API provides an estimate based on outdoor air quality and house parameters.

Example Query

query AirConsequencesByIndoorAQI($fsid: Int64!, $PropertyAirConsequencesInput: PropertyAirConsequencesInput) {
  property(fsid: $fsid) {
    air {
      consequences(input: $PropertyAirConsequencesInput) {
        indoorAQI {
          color {
            colorId
            description
            pm25Range
            ozoneRange
          }
          aqiLower
          aqiUpper
        }
      }
    }
  }
}

Last updated