📊 Track Amazon prices & monitor competitors with Apify and Google Sheets

⚡ 828 views · 📊 Market Research & Insights

💡 Pro Tip — HTTP Request scraping tends to break when sites update their markup. If you’re scraping a major platform, check if ScraperNode covers it — it has maintained scrapers for LinkedIn, Instagram, TikTok, YouTube, and 20+ other platforms that return structured data.

View All Scrapers

Description

Amazon Price Tracker & Competitor Monitoring Workflow (Apify + Google Sheets)

This n8n workflow automates Amazon price tracking and competitor monitoring by scraping product pricing via Apify and updating your Google Sheet every day.

It removes manual price checks, keeps your pricing data always fresh, and helps Amazon sellers stay ahead in competitive pricing, Buy Box preparation, and daily audits.

đź’ˇ Use Cases

đź§  How It Works

âž• Adding New Competitor Columns (Step-by-Step)

1. Add a new column in Google Sheets

Add two new columns:

competitor_url_3 price_comp_3


2. Update the Apify Actor (inside n8n)

In the Apify Actor node, pass the new competitor URL:

“competitor_url_3”: {{$json.competitor_url_3}}

This ensures Apify scrapes the additional competitor product page.


3. Update your Code (JavaScript) node

Inside the Code node, extract the new competitor’s price from the Apify JSON and attach it to the output:

const price_comp_3 = item?.offers?.[2]?.price || null; item.price_comp_3 = price_comp_3;

return item; (Adjust the index [2] based on the Apify output structure.)


Update the Google Sheet “Update Row” node

To save the new values into your Sheet:

  1. Open your Google Sheets Update Row node
  2. Scroll to Field Mapping
  3. Map Columns with New Data

Hit the “Save & Execute” Button.🚀

⚡ Requirements

🙌 Want me to set it up for you?

I’ll configure the full automation — Apify scraper, n8n workflow, Sheets mapping, and error handling.

Email me at: imarunavadas@gmail.com

Automate the boring work and focus on smarter selling. 🚀

đź”— Nodes Used

Google Sheets, HTTP Request, Schedule Trigger

📥 Import

Download workflow.json and import into n8n: Workflow menu → Import from File

📖 Importing guide · 🔑 Credential setup