Skip to main content

E-commerce product price tracker with ScrapeGraphAI, Baserow and Slack alerts

Workflow preview

Workflow preview
100%
E-commerce product price tracker with ScrapeGraphAI, Baserow and Slack alerts preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

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...

Best for

  • Market Research automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

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

Source and attribution

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

1.1 Workflow description

Title
E-commerce product price tracker with ScrapeGraphAI, Baserow and Slack alerts
Workflow name
E-commerce product price tracker with ScrapeGraphAI, Baserow and Slack alerts

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 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.

Pre-conditions/Requirements

Prerequisites

  • Running n8n instance (self-hosted or n8n cloud)
  • ScrapeGraphAI community node installed
  • Mailchimp account with at least one audience list
  • Baserow workspace with edit rights
  • Product URLs or SKU list from target e-commerce platforms

Required Credentials

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

Baserow Table Setup

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

How it works

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.

Key Steps:

  • Schedule Trigger: Fires every week (or custom CRON) to start the monitoring cycle.
  • Code (Prepare URLs): Loads or constructs the list of product URLs to monitor.
  • SplitInBatches: Processes product URLs in manageable batches to avoid rate-limit issues.
  • ScrapeGraphAI: Scrapes each product page and extracts the current price and name.
  • If (Price Found?): Continues only if scraping returns a valid price.
  • Baserow: Upserts the scraped data into the price_tracker table.
  • Code (Trend Analysis): Aggregates weekly data to detect price increases, decreases, or stable trends.
  • Set (Mail Content): Formats the trend summary into an HTML email body.
  • Mailchimp: Sends the seasonal price-trend report to the selected audience segment.
  • Sticky Note: Documentation node explaining business logic in-workflow.

Set up steps

Setup Time: 10-15 minutes

  1. Clone the template: Import the workflow JSON into your n8n instance.
  2. Install ScrapeGraphAI: n8n-nodes-scrapegraphai via the Community Nodes panel.
  3. Add credentials:
    a. ScrapeGraphAI API Key
    b. Mailchimp API Key & Server Prefix
    c. Baserow API Token
  4. Configure Baserow node: Point it to your price_tracker table.
  5. Edit product list: In the “Prepare URLs” Code node, replace the sample URLs with your own.
  6. Adjust schedule: Modify the Schedule Trigger CRON expression if weekly isn’t suitable.
  7. Test run: Execute the workflow manually once to verify credentials and data flow.
  8. Activate: Turn on the workflow for automatic weekly monitoring.

Node Descriptions

Core Workflow Nodes:

  • Schedule Trigger – Initiates the workflow on a weekly CRON schedule.
  • Code (Prepare URLs) – Generates an array of product URLs/SKUs to scrape.
  • SplitInBatches – Splits the array into chunks of 5 URLs to stay within request limits.
  • ScrapeGraphAI – Scrapes each URL, using XPath/CSS selectors to pull price & title.
  • If (Price Found?) – Filters out failed or empty scrape results.
  • Baserow – Inserts or updates the price record in the database.
  • Code (Trend Analysis) – Calculates week-over-week price changes and flags anomalies.
  • Set (Mail Content) – Creates an HTML table with product, current price, and trend arrow.
  • Mailchimp – Sends or schedules the email campaign.
  • Sticky Note – Provides inline documentation and edit hints.

Data Flow:

  1. Schedule TriggerCode (Prepare URLs)SplitInBatches
  2. SplitInBatchesScrapeGraphAIIf (Price Found?)Baserow
  3. BaserowCode (Trend Analysis)Set (Mail Content)Mailchimp

Customization Examples

Change scraping frequency

// Schedule Trigger CRON for daily at 07:00 UTC
0 7 * * *

Add competitor comparison column

// Code (Trend Analysis)
item.competitor_price_diff = item.current_price - item.competitor_price;
return item;

Data Output Format

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"
}

Troubleshooting

Common Issues

  1. Invalid ScrapeGraphAI key – Verify the API key and ensure your subscription is active.
  2. Mailchimp “Invalid Audience” error – Double-check the audience ID and that the API key has correct permissions.
  3. Baserow “Field mismatch” – Confirm your table fields match the names/types in the workflow.

Performance Tips

  • Limit each SplitInBatches run to ≤10 URLs to reduce scraping timeouts.
  • Enable caching in ScrapeGraphAI to avoid repeated requests to the same URL within short intervals.

Pro Tips:

  • Use environment variables for all API keys to avoid hard-coding secrets.
  • Add an extra If node to alert you if a product’s price drops below a target threshold.
  • Combine with n8n’s Slack node for real-time alerts in addition to Mailchimp summaries.

1.2 Logical Blocks

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.

2. Block-by-Block Analysis

Block 1 - Weekly Schedule

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1

Block 2 - Define Product Sources

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 3 - Iterate Products

Type / Role
n8n-nodes-base.splitInBatches - splitInBatches
Config choices
Version 3

Block 4 - Scrape Product Page

Type / Role
n8n-nodes-scrapegraphai.scrapegraphAi - scrapegraphAi
Config choices
Version 1

Block 5 - Clean & Enrich Data

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 6 - Has Price Data?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2

Block 7 - Store Price Record

Type / Role
n8n-nodes-base.baserow - baserow
Config choices
Version 1

Block 8 - Is Price Below Threshold?

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2

Block 9 - Prepare Mailchimp Content

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3

Block 10 - Log Missing Price

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 11 - Error Handler

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 12 - Workflow Overview

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 13 - Section – Data Collection

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 14 - Section – Data Processing

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Section – Data Storage

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Section – Alerting

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 17 - Section – Error Handling

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 18 - Send a message

Type / Role
n8n-nodes-base.slack - slack
Config choices
Version 2.3

3. Summary Table

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

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/11609/11609.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

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.

Frequently asked questions

What does E-commerce product price tracker with ScrapeGraphAI, Baserow and Slack alerts do?

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...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

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.