Scrape Shopify store data with RapidAPI and save to Google Sheets
An automated workflow that scrapes Shopify store information and product data using the [Shopify Scraper API](https://rapidapi.com/skdeveloper/api/shopify-scraper4) from RapidAPI, triggered by a user submitting a webs...
Template notes
An automated workflow that scrapes Shopify store information and product data using the [Shopify Scraper API](https://rapidapi.com/skdeveloper/api/shopify-scraper4) from RapidAPI, triggered by a user submitting a website URL, then logs data into Google Sheets for easy access and analysis.
---
Node-by-Node Explanation
- On form submission Triggers when a user submits a Shopify store website URL.
- Store Info Scrap Request Sends a POST request to [shopify-scraper4.p.rapidapi.com/shopinfo.php](https://rapidapi.com/skdeveloper/api/shopify-scraper4) to fetch store metadata (name, location, domain, etc.).
- Products Scarp Request Sends a POST request to [shopify-scraper4.p.rapidapi.com/products.php](https://rapidapi.com/skdeveloper/api/shopify-scraper4) to retrieve detailed product data (titles, prices, tags, etc.).
- Append Store Info Google Sheets Appends store metadata into the "Shop Info" sheet in Google Sheets.
- Append Products Data In Google Sheets Appends product data into the "Products" sheet in Google Sheets.