AerisWeather provides a powerful weather API, mapping platform, and developer toolkits that allow weather-sensitive businesses worldwide to operate more efficiently, safely, and profitably.
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})