Connect Monoduty with your favorite tools and services
Integrate Monoduty into your applications with our simple yet powerful API
curl -X POST https://api.monoduty.com/v1/alerts \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Server Down",
"message": "Production server is not responding",
"priority": "high",
"tags": ["server", "production"]
}'
const monoduty = require('monoduty');
const client = new monoduty.Client('YOUR_API_KEY');
client.sendAlert({
title: 'Server Down',
message: 'Production server is not responding',
priority: 'high',
tags: ['server', 'production']
});
Join thousands of teams who trust Monoduty for their critical alerts.