Skip to content

Notify_spugpush

Chris Caron edited this page Jul 7, 2025 · 2 revisions

SpugPush Notifications

  • Source: https://push.spug.dev/
  • Icon Support: No
  • Message Format: Plain Text
  • Message Limit: ~10,000 Characters

SpugPush is a simple webhook service provided by the Spug monitoring platform. It allows applications to send alert messages using a secure access token.

Setup Instructions

  1. Visit the SpugPush service.
  2. Sign in and generate your token.
  3. Copy the full webhook URL, which will look like:
https://push.spug.dev/send/abc123def456ghi789jkl012mno345pq

The token portion at the end is the only value Apprise requires.

Apprise Support

Apprise supports both the full native webhook and a simplified URL form.

Syntax

Valid syntax is as follows:

  • https://push.spug.dev/send/{token}
  • spugpush://{token}

Parameter Breakdown

Variable Required Description
token Yes The 32–64 character SpugPush token used to authenticate the request.

You may also use the query format: spugpush://?token=YOUR_TOKEN.

Examples

1. Using the simplified Apprise URL

apprise -vv -t "SpugPush Title" -b "Notification content" \
   spugpush://abc123def456ghi789jkl012mno345pq

2. Using the token as a query parameter

apprise -vv -t "SpugPush Title" -b "Notification content" \
   spugpush://?token=abc123def456ghi789jkl012mno345pq

3. Using the full native webhook URL

apprise -vv -t "SpugPush Title" -b "Notification content" \
   https://push.spug.dev/send/abc123def456ghi789jkl012mno345pq

All forms are valid and supported equally by Apprise.

Clone this wiki locally