Sentry

Self-hosted and cloud-based error monitoring

Go to site
Explore
/
Apps
/
Sentry

Sentry API Integrations

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

Sentry is an error tracking and monitoring platform that can be used to detect and debug problems with applications. With the Sentry API, developers and system administrators can build custom tools and applications using the Sentry platform.

Using the Sentry API, here are some examples of the kinds of custom tools and applications that can be built:

  • Debugging tool to detect and troubleshoot errors
  • Application monitoring dashboard
  • Alert system to send notifications when an error occurs
  • Anomaly detection system to identify potential issues
  • Automated testing system to quickly identify and correct bugs
  • Event logging system to track system metrics and usage data
  • Visualization tool to track the progress and performance over time of the application or system
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: {
    sentry: {
      type: "app",
      app: "sentry",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://sentry.io/api/0/`,
      headers: {
        Authorization: `Bearer ${this.sentry.$auth.auth_token}`,
      },
    })
  },
})
List Project Events. with Sentry API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Sentry
 
Try it
Send Message (Advanced) with Discord Webhook API on New Issue Event (Instant) from Sentry API
Sentry + Discord Webhook
 
Try it
List Project Events. with Sentry API on New Message from Discord API
Discord + Sentry
 
Try it
List Project Events. with Sentry API on New Message In Channels from Slack API
Slack + Sentry
 
Try it
List Project Events. with Sentry API on New Message in Channel from Discord Bot API
Discord Bot + Sentry
 
Try it
New Issue Event (Instant) from the Sentry API

Emit new events for issues that have been created or updated.

 
Try it
List Issue Events with the Sentry API

Return a list of events bound to an issue. See the docs here

 
Try it
List Project Events. with the Sentry API

Return a list of events bound to a project. See the docs here

 
Try it
List Project Issues. with the Sentry API

Return a list of issues bound to a project. See the docs here

 
Try it
Update Issue. with the Sentry API

Updates an individual issue's attributes. Only the attributes submitted are modified.See the docs here

 
Try it

Authentication

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

Create authentication tokens at https://sentry.io/settings/account/api/auth-tokens/ to use the Sentry API on behalf of your user account.