Honeybadger

Zero-instrumentation, 360 degree coverage of errors, outages and service degradation

Go to site
Explore
/
Apps
/
Honeybadger

Honeybadger API Integrations

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

You can use the Honeybadger API to build:

  • A system to monitor your website for uptime
  • A system to monitor your website for errors
  • A system to track your website's performance
  • A system to collect customer feedback
  • A system to generate reports on your website's traffic
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: {
    honeybadger: {
      type: "app",
      app: "honeybadger",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.honeybadger.io/v2/projects`,
      headers: {
        "Accept": `application/json`,
      },
      auth: {
        username: `${this.honeybadger.$auth.api_token}`,
        password: ``,
      },
    })
  },
})

Choose an API to Connect with Honeybadger API

1
-
12
of
1000+
apps by most popular

Get projects with Honeybadger API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Honeybadger
 
Try it
Get projects with Honeybadger API on New Item in Feed from RSS API
RSS + Honeybadger
 
Try it
Get projects with Honeybadger API on New Message from Discord API
Discord + Honeybadger
 
Try it
Get projects with Honeybadger API on New Message In Channels from Slack API
Slack + Honeybadger
 
Try it
Get projects with Honeybadger API on New Message in Channel from Discord Bot API
Discord Bot + Honeybadger
 
Try it
Get projects with the Honeybadger API

Get a project list

 
Try it

Authentication

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

Authentication to the API is performed via HTTP Basic Auth. Each request should be sent with your personal authentication token (available from your profile page) as the basic auth username value.