Page 1 of 1

Add Discord Notifications via Webhooks

Posted: April 13th, 2025, 10:32 am
by sdt5intk
Hello SABnzbd team,

I’d like to request a new feature: support for Discord notifications via webhooks.

📌 Purpose:
Many users (myself included) run SABnzbd on remote servers or as part of automated media workflows. Getting real-time updates in Discord would be a huge quality-of-life improvement for monitoring downloads and automation results.

✅ Proposed Functionality:
Allow users to enter a Discord Webhook URL in the Notifications section of the SABnzbd settings.

Option to enable notifications for:

Download started

Download completed

Download failed

Queue paused/resumed

Customizable message templates would be a plus, but a simple message with title, status, and time would be more than sufficient.

📦 Example Payload:
Here’s a minimal JSON payload that works with Discord’s webhook system:

json
Copy
Edit
{
"content": "**Download Complete** 🎉\nTitle: `Example.Movie.2024.1080p`\nTime: `12:34 PM`"
}
Or optionally, using Discord’s embed system for cleaner formatting.

🔧 Implementation Notes:
Discord webhooks use standard POST requests with JSON payloads.

No authentication needed beyond the webhook URL.

This would be similar to the existing Email, Growl, or Pushbullet integration.

🚀 Benefits:
Fits perfectly into modern home-lab and media automation workflows.

Offers immediate feedback and alerts without needing to check the SABnzbd UI.

Many users already use Discord for notifications from other services (e.g. Sonarr, Radarr, Plex).

Thanks for considering this! SABnzbd is an amazing tool, and this would make it even more powerful for remote and automated setups.

Re: Add Discord Notifications via Webhooks

Posted: April 13th, 2025, 10:45 am
by safihre
But you can already do that through our Apprise integration, right?
https://github.com/caronc/apprise/wiki/Notify_discord

Re: Add Discord Notifications via Webhooks

Posted: November 1st, 2025, 8:57 pm
by danopia
I came here by searching for the same request. (Hope the necro is ok)
Yes, I've been able to send notifications to Discord by putting a Discord URL into the Apprise URLs boxes.
The 'Apprise' label I believe isn't clear that the Apprise service works transparently with Discord webhook URLs and without setting up any Apprise-specific stuff. There's no documentation visibly linked, so I basically had to google and land on this thread to set it up.
I'm still not sure whether the notifications are going to Apprise servers or not?
Image
Once you know what to do, it's easy and quick :)

Re: Add Discord Notifications via Webhooks

Posted: November 2nd, 2025, 5:44 am
by safihre
Maybe indeed I should put an additional label to indicate that apprise handles the rest and improve links to documentation.

Re: Add Discord Notifications via Webhooks

Posted: November 2nd, 2025, 5:49 am
by safihre
The connections go directly to Discord.
Apprise is only a programming library, it doesn't have servers.