Block 1 - Weekly Schedule
- Type / Role
- n8n-nodes-base.scheduleTrigger - scheduleTrigger
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Product Price Monitor with Mailchimp and Baserow ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the Sc...
n8n-nodes-base.scheduletrigger, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-scrapegraphai.scrapegraphai, n8n-nodes-base.if, n8n-nodes-base.baserow, n8n-nodes-base.set, n8n-nodes-base.stickynote
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 scrapes multiple e-commerce sites for product pricing data, stores the historical prices in Baserow, analyzes weekly trends, and emails a neatly formatted seasonal report to your Mailchimp audience. It is designed for retailers who need to stay on top of seasonal pricing patterns to make informed inventory and pricing decisions.
| Credential | Used By | Scope |
|---|---|---|
| ScrapeGraphAI API Key | ScrapeGraphAI node | Web scraping |
| Mailchimp API Key & Server Prefix | Mailchimp node | Sending emails |
| Baserow API Token | Baserow node | Reading & writing records |
Create a table named price_tracker with the following fields:
| Field Name | Type | Example |
|---|---|---|
product_name |
Text | “Winter Jacket” |
product_url |
URL | https://example.com/winter-jacket |
current_price |
Number | 59.99 |
scrape_date |
DateTime | 2023-11-15T08:21:00Z |
This workflow scrapes multiple e-commerce sites for product pricing data, stores the historical prices in Baserow, analyzes weekly trends, and emails a neatly formatted seasonal report to your Mailchimp audience. It is designed for retailers who need to stay on top of seasonal pricing patterns to make informed inventory and pricing decisions.
price_tracker table.Setup Time: 10-15 minutes
n8n-nodes-scrapegraphai via the Community Nodes panel.price_tracker table.// Schedule Trigger CRON for daily at 07:00 UTC
0 7 * * *
// Code (Trend Analysis)
item.competitor_price_diff = item.current_price - item.competitor_price;
return item;
The workflow outputs structured JSON data:
{
"product_name": "Winter Jacket",
"product_url": "https://example.com/winter-jacket",
"current_price": 59.99,
"scrape_date": "2023-11-15T08:21:00Z",
"weekly_trend": "decrease"
}
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 | E-commerce product price tracker with ScrapeGraphAI, Baserow and Slack alerts |
|---|---|
| Complexity | advanced |
| Nodes | 18 |
| Categories | Market Research, AI Summarization |
| Author | vinci-king-01 |
| Published | 08 Dec 2025 |
Use the JSON export at /data/workflows/11609/11609.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.
Product Price Monitor with Mailchimp and Baserow ️ 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.