What do you want to automate

with Alerty and Meteomatics Weather API?

Prompt, edit and deploy AI agents that connect to Alerty, Meteomatics Weather API and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Notify Devices with the Alerty API

Sends a notification to active devices. See the documentation

 
Try it
Get Weather Data with the Meteomatics Weather API API

Retrieve historic, current, and forecast data globally. See the documentation

 
Try it
Integrate the Alerty API with the Meteomatics Weather API API
Setup the Alerty API trigger to run a workflow which integrates with the Meteomatics Weather API API. Pipedream's integration platform allows you to integrate Alerty and Meteomatics Weather API remarkably fast. Free for developers.

Connect Alerty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    alerty: {
      type: "app",
      app: "alerty",
    }
  },
  async run({steps, $}) {
    const data = {
      "title": `alerty.dev test notification`,
      "message": `My first notification through the Alerty API via Pipedream!`,
    }
    return await axios($, {
      method: "post",
      url: `${this.alerty.$auth.notification_url}`,
      headers: {
        Authorization: `Bearer ${this.alerty.$auth.api_key}`,
      },
      data,
    })
  },
})

Connect Meteomatics Weather API

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    meteomatics_weather_api: {
      type: "app",
      app: "meteomatics_weather_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.meteomatics.com/mvt/isolines/2024-06-22T0Z/msl_pressure.hPa/style.json`,
      params: {
        access_token: `${this.meteomatics_weather_api.$auth.oauth_access_token}`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo