Air Quality API

ENDPOINTS
GET/air-quality/coords

Get Air Quality by Coordinates

Get real-time air quality data for specific GPS coordinates (latitude and longitude). Returns the overall Air Quality Index (AQI) and individual concentrations and AQI values for 6 major pollutants: PM2.5, PM10, Ozone (O3), Nitrogen Dioxide (NO2), Sulfur Dioxide (SO2), and Carbon Monoxide (CO).

QUERY PARAMS

The latitude coordinate of the location.

Example: 37.7749

The longitude coordinate of the location.

Example: -122.4194

{
  "PM10": {
    "aqi": 17,
    "concentration": 19.06
  },
  "PM2.5": {
    "aqi": 19,
    "concentration": 6.12
  },
  "ozone": {
    "aqi": 63,
    "concentration": 63.2
  },
  "sulfur_dioxide": {
    "aqi": 1,
    "concentration": 0.86
  },
  "carbon_monoxide": {
    "aqi": 0,
    "concentration": 86.29
  },
  "nitrogen_dioxide": {
    "aqi": 1,
    "concentration": 0.97
  },
  "air_quality_index": 63
}