Set up Hugin Alerts in under 60 seconds and send your first notification.
Last updated:
Hugin Alerts is a notification inbox for developers and operators. Send events from anywhere—CI/CD pipelines, cron jobs, monitoring scripts, backend services—and get instant push notifications on your phone.
No SDK required. No complex setup. Just a simple HTTP POST request.
Get Hugin Alerts from the App Store (iOS) or Google Play (Android).
Note: Hugin Alerts is currently in early access.
After tapping "Get started," your unique ingest key appears right away. This is your authentication token—it's permanent and specific to your device.
Authorization headerSecurity tip:
Store your ingest key in environment variables or secrets management, not in your code.
Fire a test notification from your terminal to see it in action.
curl -X POST https://api.huginalerts.com/v1/events \
-H "Authorization: Bearer YOUR_INGEST_KEY" \
-H "Content-Type: application/json" \
-d '{
"system": "production",
"event": "test",
"description": "Hello from Hugin!"
}' What happens next:
Don't integrate everything at once. Pick one critical system (e.g., production deploys or error alerts) and add Hugin there first. Get comfortable with it before expanding.
The system, event, and component fields help you filter and search later. Use consistent naming across your integrations.
Use the url field to link to logs, dashboards, or GitHub PRs. Tapping a notification opens the URL directly.
Hugin is for important events, not logs. If you're tempted to send every API request or database query, you probably want a logging system instead.