AerisWeather provides a powerful weather API, mapping platform, and developer toolkits that allow weather-sensitive businesses worldwide to operate more efficiently, safely, and profitably.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the AerisWeather API, you can build a weather app that does the following:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
aerisweather: {
type: "app",
app: "aerisweather",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://api.aerisapi.com/observations/seattle%2Cwa`,
params: {
client_id: `${this.aerisweather.$auth.app_id}`,
client_secret: `${this.aerisweather.$auth.app_secret}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})