Block 1 - Daily Regulatory Check
- Type / Role
- n8n-nodes-base.scheduleTrigger - scheduleTrigger
- Config choices
- Version 1.1
This workflow is provided as-is. Please review and test before using in production.
Breaking News Aggregator with SendGrid and PostgreSQL ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have t...
n8n-nodes-base.scheduletrigger, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-scrapegraphai.scrapegraphai, n8n-nodes-base.set, n8n-nodes-base.if, n8n-nodes-base.sendgrid, n8n-nodes-base.postgres
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 automatically scrapes multiple government and regulatory websites, extracts the latest policy or compliance-related news, stores the data in PostgreSQL, and instantly emails daily summaries to your team through SendGrid. It is ideal for compliance professionals and industry analysts who need near real-time awareness of regulatory changes impacting their sector.
| Resource | Requirement | Example Value |
|---|---|---|
| PostgreSQL | Table with columns: id, title, url, source, published_at |
news_updates |
| Allowed Hosts | Outbound HTTPS access from n8n to target sites & SendGrid endpoint | https://*.gov, https://api.sendgrid.com |
| Keywords List | Comma-separated compliance terms to filter results | GDPR, AML, cybersecurity |
This workflow automatically scrapes multiple government and regulatory websites, extracts the latest policy or compliance-related news, stores the data in PostgreSQL, and instantly emails daily summaries to your team through SendGrid. It is ideal for compliance professionals and industry analysts who need near real-time awareness of regulatory changes impacting their sector.
news_updates table.Setup Time: 15-20 minutes
CREATE TABLE news_updates (
id SERIAL PRIMARY KEY,
title TEXT,
url TEXT UNIQUE,
source TEXT,
published_at TIMESTAMP
);
REG_NEWS_KEYWORDS, SEND_TO_EMAILS, DB_TABLE_NAME.// Code Node snippet
const keywords = ['GDPR','AML','SOX']; // Add or remove terms
item.filtered = keywords.some(k => item.title.includes(k));
return item;
{
"trigger": {
"cronExpression": "0 9 * * 1" // Every Monday at 09:00
}
}
The workflow outputs structured JSON data:
{
"title": "Data Privacy Act Amendment Passed",
"url": "https://regulator.gov/news/1234",
"source": "regulator.gov",
"published_at": "2024-06-12T14:30:00Z"
}
url column is marked UNIQUE to prevent duplicates.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 | Breaking news aggregator with SendGrid and PostgreSQL |
|---|---|
| Complexity | intermediate |
| Nodes | 14 |
| Categories | Market Research, AI Summarization |
| Author | vinci-king-01 |
| Published | 10 Dec 2025 |
Use the JSON export at /data/workflows/11669/11669.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 SendGrid and PostgreSQL ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have t...
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.