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 Slack and Jira ️ COMMUNITY TEMPLATE DISCLAIMER: ...
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.if, n8n-nodes-base.set
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, analyses weekly seasonal price trends, and notifies your team in Slack while opening Jira tickets for items that require price adjustments. It helps retailers plan inventory and pricing by surfacing actionable insights every week.
| Resource | Purpose | Example |
|---|---|---|
| Product URL list | Seed URLs to monitor | https://example.com/products-winter-sale |
| Slack Channel | Receives trend alerts | #pricing-alerts |
| Jira Project Key | Tickets are created here | ECOM |
This workflow automatically scrapes multiple e-commerce sites, analyses weekly seasonal price trends, and notifies your team in Slack while opening Jira tickets for items that require price adjustments. It helps retailers plan inventory and pricing by surfacing actionable insights every week.
Setup Time: 15-20 minutes
title, price, availability.// Code (Trend Logic) node
const threshold = 0.05; // 5% instead of default 10%
{
"text": `*${item.name}* price changed from *$${item.old}* to *$${item.new}* (${item.diff}%).`,
"attachments": [
{
"title": "Product Link",
"title_link": item.url,
"color": "#4E79A7"
}
]
}
The workflow outputs structured JSON data:
{
"product": "Winter Jacket",
"url": "https://example.com/winter-jacket",
"oldPrice": 129.99,
"newPrice": 99.99,
"change": -23.06,
"scrapedAt": "2023-11-04T09:00:00Z",
"status": "Below Threshold",
"slackMsgId": "A1B2C3",
"jiraIssueKey": "ECOM-101"
}
chat:write; also confirm channel ID.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 | Automated product price tracking with ScrapeGraphAI, Slack alerts and Jira tickets |
|---|---|
| Complexity | advanced |
| Nodes | 16 |
| Categories | Market Research, AI Summarization |
| Author | vinci-king-01 |
| Published | 08 Dec 2025 |
Use the JSON export at /data/workflows/11608/11608.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 Slack and Jira ️ COMMUNITY TEMPLATE DISCLAIMER: ...
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.