Block 1 - Run 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.
Medical Research Tracker with Email and Pipedrive ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the S...
n8n-nodes-base.manualtrigger, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-scrapegraphai.scrapegraphai, n8n-nodes-base.httprequest, n8n-nodes-base.if, n8n-nodes-base.set, n8n-nodes-base.emailsend
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 scans authoritative healthcare policy websites for new research, bills, or regulatory changes, stores relevant findings in Pipedrive, and immediately notifies key stakeholders via email. It is ideal for healthcare administrators and policy analysts who need to stay ahead of emerging legislation or guidance that could impact clinical operations, compliance, and strategy.
| Service | Credential Name | Purpose |
|---|---|---|
| ScrapeGraphAI | API Key | Perform web scraping |
| Pipedrive | API Token | Create / update deals & notes |
| Email (SMTP/Nodemailer) | SMTP creds | Send alert emails |
| Variable | Example Value | Description |
|---|---|---|
| N8N_DEFAULT_EMAIL_FROM | [email protected] | Default sender for Email Send node |
| POLICY_KEYWORDS | telehealth, Medicare, HIPAA | Comma-separated keywords for filtering |
This workflow automatically scans authoritative healthcare policy websites for new research, bills, or regulatory changes, stores relevant findings in Pipedrive, and immediately notifies key stakeholders via email. It is ideal for healthcare administrators and policy analysts who need to stay ahead of emerging legislation or guidance that could impact clinical operations, compliance, and strategy.
Setup Time: 15–20 minutes
n8n-nodes-scrapegraphai.cms.gov, nih.gov, who.int, state health departments).const keywords = [...] array to match topics you care about.// Insert after Email Send
{
"node": "Slack",
"parameters": {
"channel": "#policy-alerts",
"text": `New policy update: ${$json["title"]} - ${$json["url"]}`
}
}
// Replace Pipedrive node config
{
"resource": "deal",
"operation": "create",
"title": $json["title"],
"properties": {
"dealstage": "appointmentscheduled",
"description": $json["summary"]
}
}
The workflow outputs structured JSON data:
{
"title": "Telehealth Expansion Act of 2024",
"date": "2024-05-30",
"url": "https://www.congress.gov/bill/118th-congress-house-bill/1234",
"summary": "This bill proposes expanding Medicare reimbursement for telehealth services...",
"source": "congress.gov",
"status": "new"
}
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 | Healthcare policy monitoring with ScrapeGraphAI, Pipedrive and email alerts |
|---|---|
| Complexity | advanced |
| Nodes | 16 |
| Categories | Market Research, AI Summarization |
| Author | vinci-king-01 |
| Published | 23 Dec 2025 |
Use the JSON export at /data/workflows/12073/12073.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.
Medical Research Tracker with Email and Pipedrive ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the S...
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.