Monitor SSL certificate expiry and Alert Telegram the Moment It Breaks

On a schedule, this checks ssl certificate expiry and — only when something is actually wrong — fires a Telegram alert with the details, so you hear about problems before your customers do.

difficulty Beginnersetup 20 minresult You get an immediate Telegram alert whenever ssl certificate expiry fails, and silence when everything's healthy.
  1. 1

    Step 1 — Schedule the check

    Add a Schedule Trigger. Every 5 minutes for uptime; once a day is plenty for expiry checks.

  2. 2

    Step 2 — Run the check

    Add an HTTP Request node that inspects the TLS certificate and reads its expiry date.

  3. 3

    Step 3 — Decide if it's a problem

    Add an If node: continue only when the remaining days drop below your threshold (e.g. 21). This keeps things quiet when all is well.

  4. 4

    Step 4 — Alert Telegram

    Add a Telegram node. Set Operation to Send Message, enter your chat ID, and build the message from what failed, the value observed, and a timestamp. Create the bot with @BotFather and add its token as a credential.

Frequently asked questions

How do I avoid alert storms?

Add a "seen" flag or a cooldown so a persistent outage alerts once, not every 5 minutes. n8n's static data or a small store handles this cleanly.

Can I monitor several targets?

Yes — feed a list of URLs/domains into Step 2 and loop, so one workflow covers your whole estate and still alerts Telegram per failure.

About this recipe. Recipes on FlowRecipesHub are written for business owners, not developers, and are tested before publishing — how recipes get made. Some ingredient links are affiliate links that cost you nothing — full disclosure.