Send Push Notifications with Shoutrrr
Updated on August 31, 2026
Git Repository
The quickest way to install Shoutrrr is with Go:
go install github.com/nicholas-fedor/shoutrrr/shoutrrr@latestIf you do not want to build it yourself, you can also download a release binary from the Shoutrrr GitHub releases page.
signalgrid://CLIENT_KEY@CHANNEL
signalgrid://CLIENT_KEY@CHANNEL?title=Deployment%20finished
signalgrid://CLIENT_KEY@CHANNEL?critical=Yes&type=CRITCLIENT_KEYCHANNELtitletypeINFO, WARN, CRIT, or SUCCESScriticalThe message body you pass to Shoutrrr becomes the Signalgrid notification body.
shoutrrr send \
--url 'signalgrid://YOUR_CLIENT_KEY@YOUR_CHANNEL_TOKEN?title=Deployment%20finished&type=SUCCESS' \
'Version 2.4.0 is now live.'shoutrrr send \
--url 'signalgrid://YOUR_CLIENT_KEY@YOUR_CHANNEL_TOKEN?title=Server%20down&type=CRIT&critical=Yes' \
'The primary web node is not responding.'