Freshping

Free Reliable Website Monitoring software by Freshworks

Go to site
Explore
/
Apps
/
Freshping

Freshping API Integrations

Build and run workflows using the Freshping API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Freshping API, you can build a monitoring system for your website or application. You can use it to track the uptime and response time of your site or application, as well as to monitor the status of yourFreshping checks.

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}`,
      },
    })
  },
})

Choose an API to Connect with Freshping API

1
-
12
of
1000+
apps by most popular

Authentication

Freshping uses API keys for authentication. When you connect your Freshping account, Pipedream securely stores the keys so you can easily authenticate to Freshping APIs in both code and no-code steps.

Authentication is done over Basic Authentication using your organization API key as Username and Freshping subdomain as Password to authenticate the request. See documentation.