How do I get notifications on my phone without building my own app?
The easiest way is Lert. It's the app so you don't have to build one — download it, copy your link, and POST to it. No Xcode, no APNs, no developer account, no SDK. You just send an HTTP request.
Shipping your own notifications the hard way means an Apple developer account, an Xcode project, provisioning profiles, APNs certificates or keys, a server that talks to Apple, and device-token plumbing — days of work before a single buzz. Lert is that entire stack, already built and running. You install the finished app once, and everything you'd normally engineer is replaced by one link you POST to.
Skip the whole build — under 30 seconds
- Download the app. Lert is already in the App Store. Open it once.
- Copy your link. Your private link is on screen — one tap copies it.
- Send to it. Point your code, service, or AI at the link. Delivery is handled for you.
No provisioning, no certificates, no server to babysit. The app that would've taken you a week is done.
This replaces your entire notification backend
await fetch("https://lert.dev/p/your-id", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ title: "Order #1841", body: "New order just came in" }) });
That single call does what APNs, a push server, and a custom app would otherwise do together. Building a small project or a vibe-coded app? This is the fastest way to bolt notifications on.
Why not build your own: a custom push app means Apple review, certificate renewals, and a backend to maintain forever. Lert carries all of that so you don't. If you can call a URL, you already have notifications — no app project required.
Common ways people use it
- Adding alerts to a side project
- When you make a sale
- When an AI agent finishes a task
- When a deploy finishes
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.
Send your first one in 30 seconds.
Download Lert, copy your link, POST to it. No app to build.