Structure and examples of the JSON payload sent by alert webhooks.
MoniTao webhooks send a structured JSON payload on each alert. This payload contains all the information needed to process the alert in your system.
You can use this payload to trigger automated actions, enrich your incident tickets, or feed your own dashboard.
{
"event": "monitor.down",
"monitor": {
"id": 12345,
"name": "Production API",
"url": "https://api.example.com/health"
},
"status": {
"code": 503,
"message": "Service Unavailable"
},
"timestamp": "2026-01-30T10:15:00Z",
"duration_ms": 5420
}
The basic structure is identical. Some additional fields vary by type.
Contact us if you need specific data in the payload.
Yes, a monitor.up event is sent when the service becomes accessible again.
Use the "Send test" button in webhook settings.
Start free, no credit card required.