Skip to main content

Track Amazon product prices with ScrapeGraphAI, Google Sheets & Telegram alerts

Workflow preview

Workflow preview
100%
Track Amazon product prices with ScrapeGraphAI, Google Sheets & Telegram 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

This workflow automates the process of monitoring Amazon product prices and sending alerts when a product’s price drops below a defined threshold. It integrates ScrapeGraphAI , Google Sheets , and ...

Best for

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

Tools used

n8n-nodes-base.scheduletrigger, n8n-nodes-base.manualtrigger, n8n-nodes-scrapegraphai.scrapegraphai, n8n-nodes-base.merge, n8n-nodes-base.if, n8n-nodes-base.googlesheets, n8n-nodes-base.telegram, n8n-nodes-base.splitinbatches

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Davide.

Original n8n.io source

1.1 Workflow description

Title
Track Amazon product prices with ScrapeGraphAI, Google Sheets & Telegram alerts
Workflow name
Track Amazon product prices with ScrapeGraphAI, Google Sheets & Telegram alerts

This workflow automates the process of monitoring Amazon product prices and sending alerts when a product’s price drops below a defined threshold.

It integrates ScrapeGraphAI, Google Sheets, and Telegram to provide a complete end-to-end price tracking system.


Key Advantages

  1. 💡 Intelligent Scraping

    • Uses ScrapeGraphAI to extract structured data (product prices) from complex Amazon pages — even those with dynamic JavaScript rendering.
  2. 📊 Centralized Tracking

    • All products and price history are managed in a Google Sheet, making it easy to review and update data.
  3. ⚡ Real-Time Alerts

    • Sends instant Telegram notifications when a product’s price drops below its previous minimum — helping users take quick advantage of deals.
  4. 🔁 Fully Automated

    • Once set up, it runs on a schedule with no manual input required, automatically updating and alerting users.
  5. 🧩 Modular & Extensible

    • Built entirely with n8n nodes, making it easy to customize — for example, adding new alert channels (email, Slack) or additional data checks.
  6. 🕒 Time-Efficient

    • Eliminates the need for manual price checking, saving significant time for users monitoring multiple products.

How it Works

This automated workflow tracks Amazon product prices and sends an alert via Telegram when a product hits a new lowest price. Here's the process:

  1. Trigger & Data Fetch: The workflow is initiated either on a scheduled basis (every 10 minutes) or manually. It first connects to a designated Google Sheet, which acts as a database, to fetch a list of products to monitor. Each product's details (Name, URL, and current "MIN PRICE") are read.

  2. Price Scraping & Comparison: The workflow loops through each product from the sheet. For each product, it uses ScrapeGraphAI to navigate to the Amazon product page, render JavaScript-heavy content, and extract the current price. This newly scraped price is then compared to the "MIN PRICE" value stored in the Google Sheet for that product.

  3. Conditional Alert & Update:

    • If the new price is lower, two actions are triggered: a. Sheet Update: The Google Sheet is updated with the new, lower "MIN PRICE" and the current date. b. Telegram Notification: A message is sent to a specified Telegram chat, announcing that the product has hit a new lowest price, including the product name and a link.
    • If the price is not lower, no action is taken for that product, and the workflow moves on to the next one in the loop.

Set up Steps

To implement this workflow yourself, follow these steps:

  1. Prepare the Google Sheet:

    • Create a copy of the provided template spreadsheet.
    • In the sheet, fill in the columns for PRODUCT (name), URL (the full Amazon product link), and MIN PRICE. When adding a new product, set the MIN PRICE to a very high value (e.g., 9999) to ensure the first real price triggers an alert.
  2. Configure n8n Credentials:

    • Google Sheets: Set up a "Google Sheets account" credential in n8n using OAuth2 to grant the workflow access to your copied spreadsheet.
    • ScrapeGraphAI: Configure the "ScrapegraphAI account" credential with your API key from the ScrapeGraphAI service.
    • Telegram: Set up a "Telegram account" credential with a Bot Token obtained from the BotFather in Telegram. You will also need your specific chatId for the node.

Need help customizing?

Contact me for consulting and support or add me on Linkedin.

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 - Schedule Trigger

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

Block 2 - When clicking ‘Execute workflow’

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

Block 3 - Scrape Amazon Product Price

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

Block 4 - Merge

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.2

Block 5 - Min price?

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

Block 6 - Update price

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 7 - Send alert

Type / Role
n8n-nodes-base.telegram - telegram
Config choices
Version 1.2

Block 8 - Get products

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 9 - Loop

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

Block 10 - Sticky Note

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

Block 11 - Sticky Note1

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

Block 12 - Sticky Note2

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

Block 13 - Sticky Note3

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

3. Summary Table

Workflow Track Amazon product prices with ScrapeGraphAI, Google Sheets & Telegram alerts
Complexity intermediate
Nodes 13
Categories Market Research, AI Summarization
Author Davide
Published 24 Oct 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/10115/10115.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 Track Amazon product prices with ScrapeGraphAI, Google Sheets & Telegram alerts do?

This workflow automates the process of monitoring Amazon product prices and sending alerts when a product’s price drops below a defined threshold. It integrates ScrapeGraphAI , Google Sheets , and ...

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.