Skip to content

Integrations

Notifiq receives notifications via a simple HTTP POST to /api/notify. Any system that can make an HTTP request can integrate with it.

Available integrations

IntegrationDescription
CheckmkEnterprise monitoring — host and service alerts
WazuhSIEM — security alerts and rule events
ZabbixInfrastructure monitoring
GenericAny system via curl or HTTP client

How integrations work

All integrations POST to the same endpoint:

POST /api/notify
Authorization: Bearer YOUR_TOKEN
Content-Type: application/json

{
  "title": "...",
  "message": "...",
  "level": "critical|error|warning|info|success"
}

The integration script's job is to translate the monitoring system's native alert format into this structure.

Rate limiting

If your monitoring system sends high volumes of alerts, add its IP to the Rate Limit Whitelist in Settings → Security to avoid hitting limits.