If you have ever wanted a ping when something happens, you have probably done what I did: rigged a Telegram or Discord bot to send yourself a message.
I have built more of those than I can count. And every time, it was more work than it should be.
The bot dance
Here is what "just send myself a message" actually looks like with a Telegram bot.
- Talk to BotFather to create a bot.
- Copy and store the bot token somewhere safe.
- Find your own chat id, which is its own little quest.
- Format the request with the token and the chat id.
- Get the message in a chat app you now have to keep open.
Discord is the same shape. Create a webhook, keep the URL, format the JSON, and your alert lands in a channel next to everyone's messages.
It works. But look at what you did: you built plumbing, stored secrets, and your notification ended up buried in a chat app. That is not a notification. That is a message you might see later.
What you actually wanted
A real notification. On your phone. The moment the thing happens. Nothing to build.
That is the whole reason Hook.Notifier exists. You get a personal URL and you call it.
curl "https://hooknotifier.com/{IDENTIFIER}/{KEY}?object=Done&body=The%20thing%20happened"
No bot. No token. No chat id. No channel. A native push notification lands on your phone, and it stays in an inbox made for exactly this.
What a bot will never give you
A chat message is flat. A notification system has levers a rigged bot does not:
- Priorities. A cron log should not buzz like a production incident. Low priority skips the push, critical cuts through everything.
- Quiet hours. Your nights stay quiet, and only high or critical alerts get through.
- Updates in place. One "job running" notification that becomes "job done", instead of a stack of messages.
- Action buttons. Up to 3 buttons pointing at your own URLs, right on the notification in the inbox and the app.
- Folders and per-topic mute. Tags group your alerts into colored folders, and each tag can be normal, silent, or hidden.
You could bolt some of this onto a bot with enough code. Or you could get all of it included, free.
Get your URL
Your Hook.Notifier URL is https://hooknotifier.com/{IDENTIFIER}/{KEY}. Create a free account to get yours and replace every notification bot you have ever built.
The honest version
Bots are great for bots. For notifying yourself, they are the wrong tool used out of habit, because for a long time there was nothing simpler. Now there is.
If you want the full walkthrough, read how to send yourself a native push notification.


