Freshping

Free Reliable Website Monitoring software by Freshworks

Integrate the Freshping API with the Schedule API

Setup the Freshping API trigger to run a workflow which integrates with the Schedule API. Pipedream's integration platform allows you to integrate Freshping and Schedule remarkably fast. Free for developers.

Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it

Overview of Freshping

The Freshping API allows you to automate uptime and performance monitoring for your websites and web services. By integrating with Pipedream, you can harness this capability to create customized alerts, log incidents, and trigger actions based on the health of your monitored services. This opens up possibilities for proactive maintenance, real-time status updates, and seamless incident management by connecting to various apps and services.

Connect Freshping

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    freshping: {
      type: "app",
      app: "freshping",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.freshping.io/api/v1/checks/`,
      auth: {
        username: `${this.freshping.$auth.api_key}`,
        password: `${this.freshping.$auth.subdomain}`,
      },
    })
  },
})

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.