Freshstatus

Build Branded Public & Private Status Pages

Go to site
Explore
/
Apps
/
Freshstatus

Freshstatus API Integrations

Build and run workflows using the Freshstatus 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

The Freshstatus API allows developers to integrate Freshstatus into their applications, enabling them to create, update, and manage their Freshstatus account data. With the Freshstatus API, developers can manage:

  • Users
  • Organizations
  • Services
  • Incidents
  • Maintenance windows

Example applications that can be built using the Freshstatus API include:

  • A Freshstatus client for a desktop or mobile application
  • A Freshstatus integration for a third-party ticketing system
  • A Freshstatus dashboard for displaying status information
  • A Freshstatus widget for a website or blog
  • A Freshstatus bot for a chat application
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    freshstatus: {
      type: "app",
      app: "freshstatus",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://public-api.freshstatus.io/api/v1/services/`,
      headers: {
        "Content-Type": `application/json`,
      },
      auth: {
        username: `${this.freshstatus.$auth.username}`,
        password: `${this.freshstatus.$auth.subdomain}`,
      },
    })
  },
})

Choose an API to Connect with Freshstatus API

1
-
12
of
1000+
apps by most popular

Authentication

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

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