Block 1 - Start Workflow
- Type / Role
- n8n-nodes-base.manualTrigger - manualTrigger
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Breaking News Aggregator with Telegram and Redis ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the Sc...
n8n-nodes-base.manualtrigger, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-scrapegraphai.scrapegraphai, n8n-nodes-base.merge, n8n-nodes-base.if, n8n-nodes-base.set, n8n-nodes-base.telegram
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by vinci-king-01.
Original n8n.io source⚠️ COMMUNITY TEMPLATE DISCLAIMER: This is a community-contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the ScrapeGraphAI community node installed in your n8n instance before using this template.
This workflow monitors selected government websites, regulatory bodies, and legal-news portals for new or amended regulations relevant to specific industries. It scrapes the latest headlines, compares them against previously recorded items in Redis, and pushes real-time compliance alerts to a Telegram channel or chat.
| Key Name | Description | Example |
|---|---|---|
latestRegIds |
Redis Set used to store hashes/IDs of the most recent regulatory articles processed | latestRegIds |
> Hint: Use a dedicated Redis DB (e.g., DB 1) to keep workflow data isolated from other applications.
This workflow monitors selected government websites, regulatory bodies, and legal-news portals for new or amended regulations relevant to specific industries. It scrapes the latest headlines, compares them against previously recorded items in Redis, and pushes real-time compliance alerts to a Telegram channel or chat.
Setup Time: 10-15 minutes
n8n-nodes-scrapegraphai. https://api.telegram.org/bot<token>/getUpdates to find the chat.id. Insert this value in the Telegram node. // Code node snippet
return [
{
url: "https://regulator.gov/energy-updates",
industry: "Energy",
keywords: ["renewable", "grid", "tariff"]
},
{
url: "https://financewatch.gov/financial-rules",
industry: "Finance",
keywords: ["AML", "KYC", "cryptocurrency"]
}
];
// Set node “Parameters → Value”
items[0].json.message = `🛡️ *${$json.industry} Regulation Update*\n\n*${$json.title}*\n${$json.date}\n${$json.url}`;
return items;
The workflow outputs structured JSON data:
{
"title": "EU Proposes New ESG Disclosure Rules",
"date": "2024-04-18",
"url": "https://europa.eu/legal/eu-proposes-esg-disclosure",
"industry": "Finance"
}
SplitInBatches to 2-3 URLs at a time if sites implement rate limiting. Pro Tips:
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Monitor regulatory updates with ScrapeGraphAI and send alerts via Telegram |
|---|---|
| Complexity | advanced |
| Nodes | 16 |
| Categories | Market Research, AI Summarization |
| Author | vinci-king-01 |
| Published | 23 Dec 2025 |
Use the JSON export at /data/workflows/12072/12072.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Breaking News Aggregator with Telegram and Redis ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the Sc...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Market Research, AI Summarization use case.