-
-
Couldn't load subscription status.
- Fork 524
Notify_spugpush
Chris Caron edited this page Jul 7, 2025
·
2 revisions
- 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.
- Visit the SpugPush service.
- Sign in and generate your token.
- 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 supports both the full native webhook and a simplified URL form.
Valid syntax is as follows:
https://push.spug.dev/send/{token}spugpush://{token}
| 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.
apprise -vv -t "SpugPush Title" -b "Notification content" \
spugpush://abc123def456ghi789jkl012mno345pqapprise -vv -t "SpugPush Title" -b "Notification content" \
spugpush://?token=abc123def456ghi789jkl012mno345pqapprise -vv -t "SpugPush Title" -b "Notification content" \
https://push.spug.dev/send/abc123def456ghi789jkl012mno345pqAll forms are valid and supported equally by Apprise.