Block 1 - Workflow Overview
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Product Price Monitor with Pushover and Baserow ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the Scr...
n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-scrapegraphai.scrapegraphai, n8n-nodes-base.if, n8n-nodes-base.httprequest, n8n-nodes-base.merge
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 e-commerce sites for selected products, analyzes weekly pricing trends, stores historical data in Baserow, and sends an instant Pushover notification when significant price changes occur. It is ideal for retailers who need to track seasonal fluctuations and optimize inventory or pricing strategies.
| Field Name | Type | Description |
|---|---|---|
| Product ID | Number | Internal or SKU |
| Name | Text | Product title |
| URL | URL | Product page |
| Price | Number | Current price (float) |
| Currency | Single select (USD, EUR, etc.) |
|
| Last Seen | Date/Time | Last price check |
| Trend | Number | 7-day % change |
This workflow automatically scrapes multiple e-commerce sites for selected products, analyzes weekly pricing trends, stores historical data in Baserow, and sends an instant Pushover notification when significant price changes occur. It is ideal for retailers who need to track seasonal fluctuations and optimize inventory or pricing strategies.
Setup Time: 15-25 minutes
/account/settings) 5 value if you want a higher/lower alert threshold.// Replace the Pushover node with Slack
{
"channel": "#pricing-alerts",
"text": `🚨 ${$json["Name"]} changed by ${$json["delta"]}% – now ${$json["Price"]} ${$json["Currency"]}`
}
// Add to ScrapeGraphAI's selector map
{
"stock": {
"selector": ".availability span",
"type": "text"
}
}
The workflow outputs structured JSON data:
{
"ProductID": 12345,
"Name": "Winter Jacket",
"URL": "https://shop.example.com/winter-jacket",
"Price": 79.99,
"Currency": "USD",
"LastSeen": "2024-11-20T10:34:18.000Z",
"Trend": 12,
"delta": -7.5
}
Product ID or another unique field is set as the primary key for upsert.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 | Track e-commerce price changes with ScrapeGraphAI, Baserow & Pushover alerts |
|---|---|
| Complexity | advanced |
| Nodes | 20 |
| Categories | Market Research, AI Summarization |
| Author | vinci-king-01 |
| Published | 14 Dec 2025 |
Use the JSON export at /data/workflows/11803/11803.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 Pushover and Baserow ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the Scr...
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.