Home/Answers/Get notified when someone signs up
Answer

How do I get notified when someone signs up?

Add one HTTP POST to your signup handler with Lert. The moment a new user is created, send their name to your Lert link and your phone buzzes โ€” even locked in your pocket. No account, no API keys, no SDK.

Those first few sign-ups are the most exciting moments of any project โ€” and the easiest to miss if you're not staring at your analytics. Lert puts each new user straight on your lock screen. You already have a function that creates the account; you just add one line to it. Because your Lert link is the credential, there's no key to configure and nothing to install.

Set it up in under 30 seconds

  1. Download the app. Open it once โ€” there's no account to create. Your private link is on screen.
  2. Copy your link. One tap copies https://lert.dev/p/your-id.
  3. Drop a POST into your signup handler. Right after the user record is saved, fire it off with the new user's email.

From then on, every new sign-up buzzes your phone.

Example: inside a Node signup handler

node
app.post("/signup", async (req, res) => {
  const user = await db.users.create(req.body);

  await fetch("https://lert.dev/p/your-id", {
    method: "POST",
    headers: { "Content-Type": "application/json" },
    body: JSON.stringify({
      title: "New sign-up ๐Ÿ™Œ",
      body:  `${user.email} just joined`,
      tag:   "signups"
    })
  });

  res.json({ ok: true });
});

No auth token, no SDK โ€” just one fetch. Not a coder? If your sign-ups come through a form builder or CRM, connect it with Zapier and paste your link into a webhook step.

Tip: wrap the POST so a Lert hiccup never blocks a real sign-up โ€” fetch(...).catch(() => {}). The account creation is what matters; the buzz is a bonus.

Related setups

See the form submission notifications use case and the webhook notifications guide. It's free for one channel and 50 notifications a day; Lert Pro is $2.99/month for unlimited. Full details in the docs.

Never miss a new user.

Download Lert, copy your link, add one POST to your signup handler. Your phone buzzes.

Get the app iOS