background-hooknotifierbackground-hooknotifier
Last update: Jul 04, 20261 minutes read

A free alternative to Pushover

build in public

Pushover is a great push notification service, but it is paid. If you want the same thing for free, here is how Hook.Notifier compares and how to switch.

Pushover sends you a push notification from an API call. It works well and a lot of people rely on it. The one catch is the price: after a 30 day trial, each platform is a one-time purchase of about five dollars, and Pushover for Teams is a monthly per-user fee.

If you want the same result for free, Hook.Notifier does the same job: one HTTP request, a native notification on your phone.

The same core idea

With Pushover, you send a request to their API and it pushes to your devices. With Hook.Notifier, you get a personal URL and call it:

curl "https://hooknotifier.com/{IDENTIFIER}/{KEY}?object=Hello&body=My%20notification"

A real notification lands on your phone. No app to build, no backend.

How they compare

PushoverHook.Notifier
Send from an APIYesYes
Native phone pushYesYes
Price~$5 one-time per platform, Teams paid monthlyFree
Priorities5 levels, incl. emergency with acknowledgment4 levels, high and critical bypass quiet hours
Action buttonsNo, one supplementary linkUp to 3 buttons per notification
Scheduled deliveryNoYes, delay or exact time, up to 3 days
Update a sent notificationNoYes, PUT by id, the push replaces the old one
FormattingHTML subsetMarkdown
Notification inboxNoYes, read/unread and full-text search
Payload templates for raw webhooksNoYes, per hook
Outgoing webhooksNoYes, relay notifications to Slack or any URL
Team sharingTeam planYes

To be fair on one point: Pushover's emergency priority repeats until you acknowledge it, and Hook.Notifier has no equivalent of that acknowledgment loop. If that specific behavior is why you use Pushover, it still earns its price.

On most other axes Hook.Notifier now goes further. Action buttons on notifications, scheduling a send, updating a notification in place (a deploy that goes from "started" to "done" as one notification), markdown bodies, an inbox with read state and search, per-hook payload templates that turn any raw webhook into a readable message, and outgoing webhooks to relay everything onward. All free.

hook notifier notification

Get your URL

Your Hook.Notifier URL is https://hooknotifier.com/{IDENTIFIER}/{KEY}. Create a free account to get yours and start sending notifications.

Switching over

Anywhere you call Pushover's API, call your Hook.Notifier URL instead. The parameters map cleanly: a title, a message, an optional priority or color. If it was a webhook pointing at Pushover, just change the URL.

Want the full walkthrough? Read how to send yourself a native push notification.