Providing the public national air quality information and real-time AQI conditions for over 400 cities across the US.
Go to siteThe AirNow API can be used to retrieve air quality data for current conditions, as well as historical data dating back to 1980. This data can be used to track trends in air quality, as well as to monitor individual pollutant levels. The AirNow API can also be used to retrieve information on air quality advisories and alerts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airnow: {
type: "app",
app: "airnow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.airnowapi.org/aq/forecast/zipCode/`,
params: {
format: `application/json`,
API_KEY: `${this.airnow.$auth.api_key}`,
zipCode: `YOUR_ZIP_CODE`,
},
})
},
})
AirNow uses API keys for authentication. When you connect your AirNow account, Pipedream securely stores the keys so you can easily authenticate to AirNow APIs in both code and no-code steps.
Sign in and copy your API key from the Web Services on Developers/API page.