What's a simpler alternative to a Telegram bot for notifications?
The simpler alternative is Lert. No BotFather, no bot token, no chat_id to look up. Download the app, copy your link, and POST to it — your iPhone buzzes in about a second.
A Telegram bot is a clever way to get notifications, and it comes with real perks: it's free, it works on every platform, and messages sync across all your devices. If you already live in Telegram, it's a reasonable tool for the job.
The friction is in the setup. You message BotFather to create a bot, copy the bot token it hands back, then send yourself a message and call the API just to discover your numeric chat_id before anything works. Lert skips all of that. Your link is created for you the moment you open the app, and POSTing to it is the entire integration.
The entire setup — under 30 seconds
- Download the app. Open it once. No bot to register, no account.
- Copy your link. Your private link is on screen — one tap copies it.
- POST to it. Send an HTTP request from your code or automation and your phone buzzes.
One request instead of a token and a chat_id
curl -X POST "https://lert.dev/p/your-id" \ -H "Content-Type: application/json" \ -d '{"title":"New signup","body":"alex@example.com just joined"}'
With a Telegram bot the same call needs your bot token baked into the URL and a chat_id in the body. Lert needs neither — the link is the whole address and the whole credential.
Fair comparison: a Telegram bot is free, cross-platform, and great if your team already uses Telegram or you want a group chat to receive alerts. Lert is simpler for pinging your own phone — one link, nothing to register. See Lert vs Telegram bot.
Related things people ask
- The simplest Pushover alternative
- A free ntfy alternative with an iOS app
- Send a notification without an SDK
- Instant notification on my phone from code
- Send a push notification with just a URL
Common uses: new sales, deploys, form submissions. See the curl guide and the docs.
Free is one channel and 50 notifications a day; Lert Pro is $2.99/month for unlimited.
Send your first one in 30 seconds.
Download Lert, copy your link, POST to it. Your iPhone buzzes.