Getting started

MonoDuty Quick Start

Create a MonoDuty account, configure a webhook, and send your first test alert with curl in under five minutes.

Quick Start

Get your first alert working in under 5 minutes. Follow these simple steps:

Create an Account

Sign up at monoduty.com/signup. No credit card required for the free tier.

Create Your First Webhook

Go to the Dashboard and click "Create Webhook". Give it a name like "My First Webhook" and select your notification channels (SMS, Email, Voice).

Copy Your Webhook URL

After creating the webhook, you'll get a unique URL like:

POST https://api.monoduty.com/webhook/YOUR_WEBHOOK_ID

Send Your First Alert

Test it with a simple curl command:

curl -X POST https://api.monoduty.com/webhook/YOUR_WEBHOOK_ID \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Test Alert",
    "message": "This is my first MonoDuty alert!",
    "severity": "info"
  }'
That's it! You should receive an alert via your configured channels within seconds.