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 Mailgun and MongoDB ️ COMMUNITY TEMPLATE...
n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-scrapegraphai.scrapegraphai, n8n-nodes-base.merge, n8n-nodes-base.mongodb, n8n-nodes-base.if
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, records weekly product prices in MongoDB, analyzes seasonal trends, and emails a concise report to retail stakeholders via Mailgun. It helps retailers make informed inventory and pricing decisions by providing up-to-date pricing intelligence.
| Field | Type | Example Value | Notes |
|---|---|---|---|
| productId | String | SKU-12345 |
Unique identifier you define |
| productName | String | Women's Winter Jacket |
Human-readable name |
| timestamp | Date | 2024-09-15T00:00:00Z |
Ingest date (automatically added) |
| price | Number | 79.99 |
Scraped price |
| source | String | example-shop.com |
Domain where price was scraped |
This workflow automatically scrapes multiple e-commerce sites, records weekly product prices in MongoDB, analyzes seasonal trends, and emails a concise report to retail stakeholders via Mailgun. It helps retailers make informed inventory and pricing decisions by providing up-to-date pricing intelligence.
Setup Time: 15-20 minutes
{ id, name, url }.productPrices) exists or let n8n create it on first run.to, from, and subject fields.// Cron node settings
{
"mode": "custom",
"cronExpression": "0 6 * * 1,4" // Monday & Thursday 06:00
}
// In ScrapeGraphAI extraction config
{
"price": "css:span.price",
"inStock": "css:div.availability",
"reviewCount": "regex:\"(\\d+) reviews\""
}
The workflow outputs structured JSON data:
{
"productId": "SKU-12345",
"productName": "Women's Winter Jacket",
"timestamp": "2024-09-15T00:00:00Z",
"price": 79.99,
"currency": "USD",
"source": "example-shop.com",
"trend": "5% below 3-month average"
}
from domain is verified.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 price tracker with ScrapeGraphAI, MongoDB, and Mailgun alerts |
|---|---|
| Complexity | advanced |
| Nodes | 16 |
| Categories | Market Research, AI Summarization |
| Author | vinci-king-01 |
| Published | 08 Dec 2025 |
Use the JSON export at /data/workflows/11585/11585.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 Mailgun and MongoDB ️ COMMUNITY TEMPLATE...
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.