Air Quality Archive
https://data.api.xweather.com/airquality/archive/
The Air Quality Archive endpoint provides data for locations globally. This endpoint can provide up to 24 hours in a single request for any day in the support range. Data will be interpolated for the exact location queried. Available information includes the air quality index (AQI), category, dominant pollutant, Health Index (AQHI), and information for primary pollutants.
Requests
Every request to the endpoint must include one of the supported actions in the url.
https://data.api.xweather.com/airquality/archive/{action}?client_id={client_id}&client_secret={client_secret}&{params}
Supported Actions
The following actions are supported with the /airquality/archive endpoint:
Action | Description |
---|---|
:id | Type: stringTypically used for passing a geographical location name or identifier such as city name, lat/long, or even US and Canadian postal codes. Learn more. |
route | Type: stringAllows you to pass several coordinates along a custom route to return data points at each location. Learn more. |
Response
The following is an example of what each object in the response will consist of. Depending on your requested action, the response may contain multiple instances of this object within an array.
Properties
id (string)
The ID of the air quality station. Null if not available.
loc.long (number)
The place or nearest place to the record.
loc.lat (number)
The latitude coordinate of the record.
place.name (string)
The place or nearest place to the record.
place.state (string)
The state abbreviation in which the response is located. This may be null
or an empty string depending on the country.
place.country (string)
The 2 letter ISO-3166 country abbreviation in which the response is located.
interval (string)
The forecast interval.
periods.#.dateTimeISO (string)
ISO 8601 date of the period.
periods.#.timestamp (number)
UNIX timestamp of the period.
periods.#.aqi (number)
The standardized Air Quality Index value from 0 - 500.
See AirNow
periods.#.category (string)
The Air Quality category based on the AQI:
See AirNow
- good
- moderate
- usg (Unhealthy for Sensitive Groups)
- unhealthy
- very Unhealthy
- hazardous
If using filter=china, the following categories are utilized:
More info on China AQI / Categories.
- excellent
- good
- slightly polluted
- lightly polluted
- moderately polluted
- severely polluted
If using the filter=india, the following categories are utilizes:
More info on India AQI / Categories.
- good
- satisfactory
- moderately polluted
- poor
- very poor
- severe
periods.#.color (string)
The 6 character hexadecimal color code for the specific category.
See AirNow
periods.#.method (string)
The method used for the AQI calculation:
- airnow = Used the EPA AirNow AQI specification (default)
- china = Used the China AQI specification (filter=china)
- india = Used the India AQI specification (filter=india)
periods.#.dominant (string)
The dominant pollutant. Normally set to one of the following:
- co (Carbon Monoxide)
- no2 (Nitrogen Dioxide)
- o3 (Ozone)
- pm10 (Particle Matter <10µm)
- pm2.5 (Particle Matter <2.5µm)
- so2 (Sulfur Dioxide)
periods.#.health.index (number)
The air quality health index. A simplified global health index using a scale of 0 to 20 to describe the effect of air quality on health
- low: 0 - 3
- moderate: 4-6
- high: 7-10
- very high: > 10
periods.#.health.category (string)
The air quality health index category name:
- low: 0 - 3
- moderate: 4-6
- high: 7-10
- very high: > 10
periods.#.health.color (string)
The air quality health index category color:
The air quality health index. A simplified global health index using a scale of 0 to 20 to describe the effect of air quality on health
- low: #0000FF
- moderate: #00FF00
- high: #FFFF00
- very high: #FF0000
periods.#.pollutants.#.type (string)
The type abbreviation of the pollutant:
co = carbon monoxide
no2 = nitrogen dioxide
o3 = ozone
pm1 = partical matter (<1µm)
pm10 = partical matter (<10µm)
pm2.5 = partical matter (<2.5µm)
so2 = sulfer dioxide
Note that not all air quality stations provide information on all pollutants.
periods.#.pollutants.#.name (string)
Name of the pollutant
periods.#.pollutants.#.valuePPB (number)
The pollutant measurement in parts per billion. Null if this unit is not utilized
pm2.5 & pm10 do not utilize PPB.
periods.#.pollutants.#.valueUGM3 (number)
The pollutant measurement in parts per micrograms per cubic meter. Null if this unit is not utilized
periods.#.pollutants.#.aqi (number)
The pollutant measurement converted to the common AQI value, from 0 to 500 if using AirNow AQI.
periods.#.pollutants.#.category (string)
The Air Quality category based on the AQI:
See AirNow
- good
- moderate
- usg (Unhealthy for Sensitive Groups)
- unhealthy
- very Unhealthy
- hazardous
If using filter=china, the following categories are utilized:
More info on China AQI / Categories.
- excellent
- good
- slightly polluted
- lightly polluted
- moderately polluted
- severely polluted
If using the filter=india, the following categories are utilizes:
More info on India AQI / Categories.
- good
- satisfactory
- moderately polluted
- poor
- very poor
- severe
periods.#.pollutants.#.color (string)
The 6 character hexadecimal color code for the specific category.
See AirNow
periods.#.pollutants.#.method (string)
The method used for the AQI calculation:
- airnow = Used the EPA AirNow AQI specification (default)
- china = Used the China AQI specification (filter=china)
- india = Used the India AQI specification (filter=india)
profile.tz (string)
Timezone name of the location.
profile.sources.#.name (string)
The name of the source
profile.stations.# (array)
Array of the observation station IDs used in the interpolated data
loc (object)
The location of the record.
place (object)
Object containing information about the place or nearest place to the record.
periods (array)
List of time periods for air quality data.
periods.#.health (object)
Air quality index health object.
periods.#.pollutants (array)
Air quality pollutants.
periods.#.date (string)
ISO 8601 date of the period.
profile (object)
Object containing information about the location or event.
profile.elev (number)
Elevation of the location in meters.
profile.sources (array)
List of upstream sources used to generate data set.
profile.stations (string)
List of stations used to generate data. Null if unavailable.
[
{
"id": null,
"loc": {
"long": -80.194,
"lat": 25.774
},
"place": {
"name": "miami",
"state": "fl",
"country": "us"
},
"interval": "1hr",
"periods": [
{
"dateTimeISO": "2024-06-10T00:00:00-04:00",
"timestamp": 1717992000,
"aqi": 38,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "pm2.5",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 23,
"valueUGM3": 45,
"aqi": 21,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 9,
"aqi": 37,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 14,
"aqi": 13,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 410,
"valueUGM3": 469,
"aqi": 5,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 9,
"valueUGM3": 17,
"aqi": 9,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 0,
"valueUGM3": 1.2,
"aqi": 1,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T00:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T01:00:00-04:00",
"timestamp": 1717995600,
"aqi": 29,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "o3",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 32,
"valueUGM3": 64,
"aqi": 29,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 5.7,
"aqi": 24,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 17,
"aqi": 15,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 273,
"valueUGM3": 313,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 3,
"valueUGM3": 5.5,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 1,
"valueUGM3": 1.7,
"aqi": 1,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T01:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T02:00:00-04:00",
"timestamp": 1717999200,
"aqi": 24,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "o3",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 27,
"valueUGM3": 54,
"aqi": 24,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 5,
"aqi": 21,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 13,
"aqi": 12,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 332,
"valueUGM3": 380,
"aqi": 4,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 1,
"valueUGM3": 2.7,
"aqi": 1,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 1,
"valueUGM3": 2.7,
"aqi": 1,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T02:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T03:00:00-04:00",
"timestamp": 1718002800,
"aqi": 24,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "pm2.5",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 23,
"valueUGM3": 47,
"aqi": 21,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 5.8,
"aqi": 24,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 14,
"aqi": 13,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 402,
"valueUGM3": 460,
"aqi": 4,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 2,
"valueUGM3": 2.9,
"aqi": 1,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 3,
"valueUGM3": 8.7,
"aqi": 5,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T03:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T04:00:00-04:00",
"timestamp": 1718006400,
"aqi": 21,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "o3",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 23,
"valueUGM3": 46,
"aqi": 21,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 4,
"aqi": 17,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 16,
"aqi": 15,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 332,
"valueUGM3": 380,
"aqi": 4,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 3,
"valueUGM3": 5.6,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 4,
"valueUGM3": 10,
"aqi": 5,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T04:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T05:00:00-04:00",
"timestamp": 1718010000,
"aqi": 23,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "o3",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 25,
"valueUGM3": 49,
"aqi": 22,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 4,
"aqi": 17,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 13,
"aqi": 12,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 288,
"valueUGM3": 330,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 4,
"valueUGM3": 7.8,
"aqi": 4,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 3,
"valueUGM3": 8.1,
"aqi": 4,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T05:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T06:00:00-04:00",
"timestamp": 1718013600,
"aqi": 23,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "o3",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 24,
"valueUGM3": 49,
"aqi": 22,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 4,
"aqi": 17,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 11,
"aqi": 10,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 255,
"valueUGM3": 292,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 4,
"valueUGM3": 8.2,
"aqi": 4,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 2,
"valueUGM3": 6.4,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T06:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T07:00:00-04:00",
"timestamp": 1718017200,
"aqi": 24,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "pm2.5",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 22,
"valueUGM3": 44,
"aqi": 20,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 6,
"aqi": 25,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 10,
"aqi": 9,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 212,
"valueUGM3": 243,
"aqi": 2,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 7,
"valueUGM3": 13,
"aqi": 7,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 2,
"valueUGM3": 6.1,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T07:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T08:00:00-04:00",
"timestamp": 1718020800,
"aqi": 25,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "pm2.5",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 22,
"valueUGM3": 44,
"aqi": 20,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 6,
"aqi": 25,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 11,
"aqi": 10,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 230,
"valueUGM3": 263,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 5,
"valueUGM3": 10,
"aqi": 5,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 2,
"valueUGM3": 6,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T08:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T09:00:00-04:00",
"timestamp": 1718024400,
"aqi": 23,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "o3",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 24,
"valueUGM3": 48,
"aqi": 22,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 5.1,
"aqi": 21,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 9,
"aqi": 8,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 288,
"valueUGM3": 330,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 5,
"valueUGM3": 10,
"aqi": 5,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 4,
"valueUGM3": 9.4,
"aqi": 5,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T09:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T10:00:00-04:00",
"timestamp": 1718028000,
"aqi": 34,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "pm2.5",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 29,
"valueUGM3": 58,
"aqi": 26,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 8.1,
"aqi": 33,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 10,
"aqi": 9,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 213,
"valueUGM3": 243,
"aqi": 2,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 5,
"valueUGM3": 10,
"aqi": 5,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 3,
"valueUGM3": 6.6,
"aqi": 3,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T10:00:00-04:00"
},
{
"dateTimeISO": "2024-06-10T11:00:00-04:00",
"timestamp": 1718031600,
"aqi": 36,
"category": "good",
"color": "00E400",
"method": "airnow",
"dominant": "pm2.5",
"health": {
"index": 2,
"category": "low",
"color": "0000FF"
},
"pollutants": [
{
"type": "o3",
"name": "ozone",
"valuePPB": 26,
"valueUGM3": 51,
"aqi": 23,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm2.5",
"name": "particle matter (<2.5µm)",
"valuePPB": null,
"valueUGM3": 9,
"aqi": 37,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "pm10",
"name": "particle matter (<10µm)",
"valuePPB": null,
"valueUGM3": 11,
"aqi": 10,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "co",
"name": "carbon monoxide",
"valuePPB": 352,
"valueUGM3": 403,
"aqi": 4,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "no2",
"name": "nitrogen dioxide",
"valuePPB": 5,
"valueUGM3": 8.7,
"aqi": 4,
"category": "good",
"color": "00E400",
"method": "airnow"
},
{
"type": "so2",
"name": "sulfur dioxide",
"valuePPB": 7,
"valueUGM3": 19,
"aqi": 10,
"category": "good",
"color": "00E400",
"method": "airnow"
}
],
"date": "2024-06-10T11:00:00-04:00"
}
],
"profile": {
"tz": "America/New_York",
"elev": 2,
"sources": [
{
"name": "CAMS"
},
{
"name": "Vaisala Xweather"
}
],
"stations": null
}
}
]