🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Shopify to Google Sheets, competitor data ready fast

Lisa Granqvist Partner Workflow Automation Expert

Competitor research falls apart at the boring part. You find a Shopify store, then you waste an hour copying products, prices, and tags into a spreadsheet that still ends up messy.

This Shopify Sheets automation hits marketers building positioning decks, but agency owners and ecommerce operators feel it too. You get clean, analysis-ready rows in Google Sheets without babysitting tabs or reformatting exports.

Below, you’ll see exactly what the workflow pulls from a Shopify site, where it lands in Sheets, and how to tweak it for your own competitor tracking.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: Shopify to Google Sheets, competitor data ready fast

The Problem: Competitor Catalog Data Is a Time Sink

If you’ve ever tried to “quickly” audit a competitor’s Shopify store, you know the trap. It starts simple: grab the store name, a location, maybe a hint of what they sell. Then you realize the real value is in the catalog details. Titles, prices, product types, tags, and the weird patterns you only notice once everything sits in a spreadsheet. Doing that manually is slow, and honestly, it’s where accuracy dies. One missed product page, one copied price that includes a currency symbol, and your comparison is suddenly unreliable.

The friction compounds. Here’s where it breaks down.

  • Collecting product data by hand forces you to bounce between dozens of pages and tabs.
  • Copy-paste formatting turns prices and tags into inconsistent junk you can’t filter cleanly.
  • You can’t scale to 10 stores in a week if each one takes a couple hours.
  • “Quick competitor checks” become guesswork, because the data isn’t complete or repeatable.

The Solution: Shopify Store + Product Scrape to Sheets

This workflow turns a Shopify store URL into two tidy tables in Google Sheets. It starts when someone submits a website link through an n8n form. From there, the automation calls the Shopify Scraper API on RapidAPI twice: once to fetch store-level metadata (things like the store name, domain, and location), and once to pull the full product catalog. As the data comes back, n8n appends it into two separate Google Sheets tabs, so you don’t end up mixing store info with hundreds of product rows. The end result is simple: you open Sheets and start analyzing immediately, instead of building the dataset first.

The workflow begins with one form submission. Two API requests run in parallel, then each response is logged into its own sheet: “Shop Info” for store details and “Products” for the catalog. After that, you can filter, pivot, and compare stores side-by-side without rebuilding anything.

What You Get: Automation vs. Results

Example: What This Looks Like

Say you track 5 competitor Shopify stores each week. Manually, you might spend about 20 minutes collecting store details plus roughly 2 hours copying, cleaning, and labeling product data (especially if the catalog is big). That’s around 11 hours weekly. With this workflow, you submit 5 URLs in the form (maybe 5 minutes total), wait for the API calls to complete, then review the rows in Google Sheets. You’re back to analysis in under an hour, not stuck doing spreadsheet cleanup all afternoon.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Google Sheets for storing store info and products.
  • RapidAPI (Shopify Scraper API) to pull Shopify store and catalog data.
  • RapidAPI key (get it from RapidAPI → Endpoints → X-RapidAPI-Key).

Skill level: Beginner. You’ll connect Google Sheets, paste an API key, and confirm the sheet columns match what you want.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

A form submission kicks it off. Someone drops a Shopify store URL into the n8n form, which triggers the workflow immediately.

Two data pulls happen next. n8n sends one HTTP request to fetch store metadata (the “who is this store?” layer) and another request to retrieve product catalog data (the “what are they selling?” layer) using RapidAPI.

Sheets gets updated automatically. Store metadata is appended to a “Shop Info” tab, and product rows are appended to a “Products” tab in Google Sheets.

Your output is ready for analysis. You can filter by tag, sort by price, build pivots, and compare multiple competitors in one place without re-scraping or reformatting.

You can easily modify which product fields you keep to match your pricing model or reporting style. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Form Trigger

Set up the form that will collect the Shopify store URL and kick off the workflow.

  1. Add the Form Submission Start node as the trigger.
  2. Set Form Title to Shopify Scraper.
  3. Set Form Description to Shopify Scraper.
  4. Under Form Fields, add a field labeled website.

Use a full Shopify store URL (e.g., https://example.myshopify.com) for best results.

Step 2: Connect Google Sheets

Both Sheets nodes append data to a Google spreadsheet using a service account.

  1. Open Append Products to Sheet and verify Operation is append.
  2. Select the spreadsheet named Shopify in Document and the sheet Products in Sheet.
  3. Credential Required: Connect your googleApi credentials.
  4. Open Record Store Info Sheet and verify Operation is append.
  5. Select the spreadsheet named Shopify in Document and the sheet Shop Info in Sheet.
  6. Credential Required: Connect your googleApi credentials.

⚠️ Common Pitfall: If the spreadsheet or sheet names don’t exist, the append operations will fail. Create the Products and Shop Info sheets first.

Step 3: Set Up Shopify API Requests

Configure the two API calls that fetch store details and product data. Form Submission Start outputs to both Retrieve Store Details and Fetch Product Catalog in parallel.

  1. Open Retrieve Store Details and set URL to https://shopify-scraper4.p.rapidapi.com/shopinfo.php.
  2. Set Method to POST and Content Type to multipart-form-data.
  3. In Body Parameters, set website to {{ $json.website }}.
  4. In Header Parameters, set x-rapidapi-host to shopify-scraper4.p.rapidapi.com and x-rapidapi-key to [CONFIGURE_YOUR_API_KEY].
  5. Open Fetch Product Catalog and set URL to https://shopify-scraper4.p.rapidapi.com/products.php.
  6. Repeat the same Method, Content Type, Body Parameters ({{ $json.website }}), and headers as above.

⚠️ Common Pitfall: The placeholder [CONFIGURE_YOUR_API_KEY] must be replaced with a valid RapidAPI key or the requests will be rejected.

Step 4: Configure Output to Google Sheets

Map the HTTP response data into your Sheets for storage.

  1. In Append Products to Sheet, keep Columns set to autoMapInputData to map product fields automatically.
  2. In Record Store Info Sheet, keep Columns set to autoMapInputData to map store fields automatically.
  3. Confirm the execution path: Fetch Product CatalogAppend Products to Sheet and Retrieve Store DetailsRecord Store Info Sheet.

Step 5: Test and Activate Your Workflow

Run a manual test to confirm data flows from the form to both Sheets.

  1. Click Execute Workflow in n8n and submit the form from Form Submission Start with a valid website value.
  2. Verify that Retrieve Store Details and Fetch Product Catalog both return data without errors.
  3. Check the Shopify spreadsheet for new rows in the Products and Shop Info sheets.
  4. When successful, toggle the workflow to Active to accept live submissions.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • RapidAPI credentials can expire or be tied to the wrong plan. If things break, check your RapidAPI dashboard and confirm the X-RapidAPI-Key is active first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Google Sheets appends can silently fail if the sheet tab name changes or columns don’t match. Open the Google Sheets node in n8n and reselect the spreadsheet and worksheet to refresh the mapping.

Frequently Asked Questions

How long does it take to set up this Shopify Sheets automation automation?

About 30 minutes if your Sheets and RapidAPI accounts are ready.

Do I need coding skills to automate Shopify Sheets automation?

No. You’ll paste an API key, connect Google Sheets, and choose where rows get appended.

Is n8n free to use for this Shopify Sheets automation workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in RapidAPI usage costs depending on the Shopify Scraper plan you choose.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I customize this Shopify Sheets automation workflow for tracking only certain product fields?

Yes, and it’s one of the best tweaks to make. Keep the same RapidAPI requests, then adjust the field mapping before the Google Sheets append so you only write the columns you care about (for example title, price, product type, tags, and handle). Many teams also add a “Competitor Name” column derived from the domain, so every product row stays grouped even when you scrape lots of stores.

Why is my RapidAPI connection failing in this workflow?

Usually it’s a missing or expired X-RapidAPI-Key in the HTTP Request node. Confirm you subscribed to the Shopify Scraper API plan in RapidAPI, then copy the header value again and update it inside n8n. If the store blocks scraping or the endpoint rate-limits you, you may see intermittent failures when you run many URLs back-to-back. Also check that the URL you submitted is a real Shopify storefront, because non-Shopify domains can return empty responses.

How many stores can this Shopify Sheets automation automation handle?

On a small n8n setup, dozens of stores per day is typical, but your real limit is RapidAPI rate limits and how large each product catalog is.

Is this Shopify Sheets automation automation better than using Zapier or Make?

Often, yes, because this workflow leans on direct HTTP requests and structured appends, which n8n handles comfortably. n8n also makes it easier to branch logic later (like skipping stores you already scraped or splitting products by collection) without paying extra for every little path. Zapier or Make can still work if you want a quick two-step automation, but you may hit limits sooner once you add filtering, cleanup, and multiple API calls per run. If you’re unsure, Talk to an automation expert and describe your volume and reporting needs.

Once this is in place, competitor catalogs stop being a “project” and become a button you press. The workflow handles the tedious collection so you can spend your time on pricing, positioning, and actual decisions.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal