IQAir AirVisual provides worldwide air quality, air pollution, and weather data. Real-time data, forecast data, and historical data
Go to siteWith the IQAir AirVisual API, you can build applications that track and display air quality data. Here are some examples of what you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
iqair_airvisual: {
type: "app",
app: "iqair_airvisual",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://api.airvisual.com/v2/countries`,
params: {
key: `${this.iqair_airvisual.$auth.api_key}`,
},
})
},
})
IQAir AirVisual uses API keys for authentication. When you connect your IQAir AirVisual account, Pipedream securely stores the keys so you can easily authenticate to IQAir AirVisual APIs in both code and no-code steps.
Generate and copy your API Key from your dashboard