What's the easiest way to send a notification to my phone from anywhere?
The easiest way is Lert. Download the app, copy your link, and POST to it with curl from any machine — your phone buzzes in about a second. No account, no API keys, no SDK.
"From anywhere" is the whole point: a server, a laptop, a Raspberry Pi, a cron job, a CI runner, or a one-off SSH session. If it can make an HTTP request, it can reach your phone through Lert. Because your unique link is the credential, there's nothing to configure per machine — you paste the same URL everywhere and it just works.
The entire setup — under 30 seconds
- Download the app. Open it once. There's no account to create, and your private link is waiting on screen.
- Copy your link. One tap copies something like
https://lert.dev/p/your-id. - POST from anywhere. Paste the link into any script, tool, or terminal and send a title and body.
Then your phone buzzes — instantly, even locked in your pocket.
The one command that works everywhere
curl -X POST "https://lert.dev/p/your-id" \ -H "Content-Type: application/json" \ -d '{"title":"Ping","body":"Sent from anywhere"}'
That's the entire integration — no headers beyond content type, no auth token, no SDK. The same link drops into n8n, Make, Zapier, or a Python requests.post without changing a thing. You can even send plain text instead of JSON.
Why it's the easiest: there's no sign-up, no key to manage, and nothing to install on each machine. One link is your credential, your endpoint, and your entire setup — copy it once and use it everywhere.
Common ways people use it
- When a scraper or long script finishes
- When an API goes down
- As a scheduled reminder from cron
- When a cron job runs
- When a server needs attention
It's free for one channel and 50 notifications a day; Lert Pro is $2.99/month for unlimited. See the docs for the full API, or the answers index for more recipes.
Send your first one in 30 seconds.
Download Lert, copy your link, POST to it. Your phone buzzes.