Integrations

Connect Watchtower with your favorite tools

Slack

Connected

Send alerts to Slack channels

channel: #alerts
workspace: My Workspace

Microsoft Teams

Send alerts to Teams channels

Webhook

Send alerts to custom webhook endpoints

Custom SMTP

Use your own email server

SMS (Twilio)

Send SMS alerts via Twilio

Custom Integration

Build your own integration using our REST API. Check out our API documentation to get started.

// Example: Send alert to custom endpoint
fetch('https://your-app.com/alerts', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    level: 'error',
    message: 'Critical threshold exceeded',
    timestamp: Date.now()
  })
});