How do I send myself a reminder from a script?
Curl your Lert link with a title and body, then schedule it with cron. Download the app, copy your link, and one line reminds you — your phone buzzes on time. No account, no API keys, no SDK.
A reminder is just a notification you schedule. Any shell script, cron job, or scheduled task that can run curl can nudge your phone at the right moment — no reminders app, no calendar integration, no login. Because your Lert link is the credential, the whole reminder is one command you can paste into crontab.
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. - Curl it, then schedule. Send a one-off reminder now, or add it to cron to repeat on any schedule.
Then your phone buzzes — instantly, even locked in your pocket.
The command
# send one reminder right now curl -X POST "https://lert.dev/p/your-id" \ -H "Content-Type: application/json" \ -d '{"title":"Stand up","body":"Stretch and refill water","tag":"reminder"}' # or repeat it — crontab entry, every weekday at 9am 0 9 * * 1-5 curl -s -X POST "https://lert.dev/p/your-id" \ -H "Content-Type: application/json" \ -d '{"title":"Daily standup","body":"Post your update"}'
Change the cron expression to control the timing — 0 9 * * 1-5 is 9am on weekdays. Prefer a one-off later today? Pipe the same curl through at. Plain text works too if you skip the JSON and just send a string as the body.
Not a coder? Hand your Lert link to an AI and say "Give me a cron line that reminds me to take a break every two hours." It'll write the exact command to paste into crontab.
Related things people automate
- The easiest way to notify from anywhere
- Get notified when a scraper finishes
- Notify from Google Sheets
- Notify when a cron job runs
- Long-running script notifications
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.