AutomationFlowsSlack & Telegram › Weekly Website Link Checker with Slack Alerts for Broken Urls

Weekly Website Link Checker with Slack Alerts for Broken Urls

ByOneclick AI Squad @oneclick-ai on n8n.io

Automates weekly checks for broken links on a website. Scans the site using HTTP requests and filters broken links. Sends Slack alerts for detected broken URLs and creates a list for tracking. Runs weekly to monitor website link integrity. Identifies broken links and notifies…

Cron / scheduled trigger★★★★☆ complexity7 nodesHTTP RequestSlack
Slack & Telegram Trigger: Cron / scheduled Nodes: 7 Complexity: ★★★★☆ Added:

This workflow corresponds to n8n.io template #6647 — we link there as the canonical source.

This workflow follows the HTTP Request → Slack recipe pattern — see all workflows that pair these two integrations.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "id": "KtRHK31mHsMCH2kS",
  "meta": {
    "templateCredsSetupCompleted": true
  },
  "name": "Weekly Website Link Checker with Auto Alerts for Broken URLs",
  "tags": [],
  "nodes": [
    {
      "id": "db1cc570-15ce-4adf-90f2-b9379a4b1a69",
      "name": "Weekly Cron Trigger",
      "type": "n8n-nodes-base.cron",
      "notes": "This node triggers the workflow every Tuesday at midnight to perform a weekly scan of the blog.",
      "position": [
        -1040,
        300
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "9698442f-e596-47a0-9710-ac3737ab6923",
      "name": "Scan Blog with HTTP",
      "type": "n8n-nodes-base.httpRequest",
      "notes": "This node sends an HTTP request to the blog sitemap or API (e.g., Screaming Frog) to fetch all links for scanning.",
      "position": [
        -820,
        300
      ],
      "parameters": {
        "url": "https://yourblog.com/sitemap.xml",
        "options": {}
      },
      "typeVersion": 1
    },
    {
      "id": "962d6578-f7da-47f1-ac7c-a3ea48bffbc5",
      "name": "Filter Broken Links",
      "type": "n8n-nodes-base.if",
      "notes": "This IF node filters links with a 404 status code to identify broken links.",
      "position": [
        -600,
        300
      ],
      "parameters": {
        "conditions": {
          "number": [
            {
              "value1": "{{$node['Scan Blog with HTTP'].json['status']}}",
              "value2": 404,
              "operation": "equal"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "871fabc3-338f-4255-ac7c-45cc657db203",
      "name": "Create Broken Links List",
      "type": "n8n-nodes-base.function",
      "notes": "This node processes the filtered data and creates a list of broken URLs for reporting.",
      "position": [
        -380,
        200
      ],
      "parameters": {
        "functionCode": "const brokenLinks = [];\nfor (let item of $input.all()) {\n  if (item.json.status === 404) {\n    brokenLinks.push(item.json.url);\n  }\n}\nreturn [{ json: { brokenLinks: brokenLinks } }];\n"
      },
      "typeVersion": 1
    },
    {
      "id": "a4252cb9-0238-4de2-bff8-2bad0013120b",
      "name": "Send Slack Alert",
      "type": "n8n-nodes-base.slack",
      "notes": "This node sends a Slack message to the 'dev-team' channel with the list of broken URLs.",
      "position": [
        -160,
        200
      ],
      "parameters": {
        "text": "\ud83d\udea8 Broken Links Report:\nFound {{ $node['Create Broken Links List'].json['brokenLinks'].length }} broken links:\n{{ $node['Create Broken Links List'].json['brokenLinks'].join('\\n') }}",
        "channel": "dev-team",
        "attachments": [],
        "otherOptions": {}
      },
      "credentials": {
        "slackApi": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "da4eb42b-d2ae-470f-9877-24702ff74978",
      "name": "No Action for Valid Links",
      "type": "n8n-nodes-base.noOp",
      "notes": "This node is a placeholder for valid links (non-404), where no action is taken.",
      "position": [
        -380,
        400
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "cfb5f7ad-4810-4745-ae62-6bda885e9d6b",
      "name": "Sticky Note",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1020,
        -120
      ],
      "parameters": {
        "color": 5,
        "width": 820,
        "height": 280,
        "content": "## System Architecture\n- **Link Checking Pipeline**:\n  - **Weekly Cron Trigger**: Schedules the workflow to run weekly.\n  - **Scan Blog with HTTP**: Performs HTTP GET requests to check website links.\n- **Alert and Tracking Flow**:\n  - **Filter Broken Links**: Identifies and separates broken links.\n  - **Send Slack Alert**: Notifies the team via Slack about broken URLs.\n  - **Create Broken Links List**: Compiles a list of broken links.\n- **Non-Critical Handling**:\n  - **No Action for Valid Links**: Skips valid links with no further action."
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "f625694c-fab9-4337-8889-340026af49d7",
  "connections": {
    "Filter Broken Links": {
      "main": [
        [
          {
            "node": "Create Broken Links List",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "No Action for Valid Links",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Scan Blog with HTTP": {
      "main": [
        [
          {
            "node": "Filter Broken Links",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Weekly Cron Trigger": {
      "main": [
        [
          {
            "node": "Scan Blog with HTTP",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Broken Links List": {
      "main": [
        [
          {
            "node": "Send Slack Alert",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Automates weekly checks for broken links on a website. Scans the site using HTTP requests and filters broken links. Sends Slack alerts for detected broken URLs and creates a list for tracking. Runs weekly to monitor website link integrity. Identifies broken links and notifies…

Source: https://n8n.io/workflows/6647/ — original creator credit. Request a take-down →

More Slack & Telegram workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Slack & Telegram

This workflow is designed for engineering teams, project managers, and IT operations who need consistent visibility into team availability across multiple projects. It’s perfect for organizations that

HTTP Request, Execute Workflow Trigger, Slack
Slack & Telegram

This workflow is an automated system that tracks End-of-Life (EOL) dates for software and technologies used across your projects. It eliminates the need to manually monitor EOL dates in spreadsheets o

HTTP Request, Noco Db, Slack
Slack & Telegram

This workflow continuously monitors the Meta Ads Library for new creatives from a specific competitor pages, logs them into Google Sheets, and sends a concise Telegram notification with the number of

HTTP Request, Telegram, Google Sheets +1
Slack & Telegram

Enhance financial oversight with this automated n8n workflow. Triggered every 5 minutes, it fetches real-time bank transactions via an API, enriches and transforms the data, and applies smart logic to

HTTP Request, Email Send, Google Sheets +1
Slack & Telegram

This workflow automates competitive price intelligence using Bright Data's enterprise web scraping API. On a scheduled basis (default: daily at 9 AM), the system loops through configured competitor pr

HTTP Request, Google Sheets, Slack +1