Skip to main content

Extract product info from webpage screenshots using Dumpling AI and GPT-4o

Workflow preview

Workflow preview
100%
Extract product info from webpage screenshots using Dumpling AI and GPT-4o preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Who is this for? This workflow is perfect for eCommerce teams, market researchers, and product analysts who want to track or extract product information from websites that restrict scraping tools. ...

Best for

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

Tools used

n8n-nodes-base.googlesheetstrigger, n8n-nodes-base.httprequest, n8n-nodes-base.googledrive, n8n-nodes-base.googlesheets, @n8n/n8n-nodes-langchain.openai, n8n-nodes-base.splitout, n8n-nodes-base.stickynote

Source and attribution

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

Original n8n.io source

1.1 Workflow description

Title
Extract product info from webpage screenshots using Dumpling AI and GPT-4o
Workflow name
Extract product info from webpage screenshots using Dumpling AI and GPT-4o

Who is this for?

This workflow is perfect for eCommerce teams, market researchers, and product analysts who want to track or extract product information from websites that restrict scraping tools. It’s also useful for virtual assistants handling product comparison tasks.


What problem is this workflow solving?

Many eCommerce and retail sites use dynamic content or anti-bot protections that make traditional scraping methods unreliable. This workflow bypasses those issues by taking a screenshot of the full page, using OCR to extract visible text, and summarizing product information with GPT-4o—all fully automated.


What this workflow does

This workflow monitors a Google Sheet for new URLs. Once a new link is added, it performs the following steps:

  1. Trigger on New URL in Sheet – Watches for new rows added to a Google Sheet.
  2. Screenshot URL via Dumpling AI – Sends the URL to Dumpling AI’s screenshot endpoint to capture a full-page image of the product webpage.
  3. Save Screenshot to Drive Folder – Uploads the screenshot to a specific Google Drive folder for reference or logging.
  4. Extract Text from Screenshot with Dumpling AI – Uses Dumpling AI’s image-to-text endpoint to pull all visible content from the screenshot.
  5. Extract Product Info from Screenshot Text with GPT-4o – Sends the extracted raw text to GPT-4o, prompting it to identify structured product information such as product name, price, ratings, deals, and purchase options.
  6. Split Each Product Entry – Splits the GPT response (an array of product objects) so each product becomes an individual item for saving.
  7. Save Products info to Google Sheet – Appends each product’s structured details to a separate sheet in the same spreadsheet.

Setup

  1. Google Sheet

    • Create a Google Sheet with at least two sheets:
      • Sheet1 should contain a header row with a column labeled URL.
      • Sheet2 should contain headers: Product Name, price, purchased, ratings, deal, buyingOptions.
    • Connect your Google account in both the trigger and final write-back node.
  2. Dumpling AI

    • Sign up at Dumpling AI
    • Create an API key and use it for both HTTP modules:
      • Screenshot URL via Dumpling AI
      • Extract Text from Screenshot with Dumpling AI
    • The screenshot endpoint used is https://app.dumplingai.com/api/v1/screenshot.
  3. Google Drive

    • Create a folder for storing screenshots.
    • In the Save Screenshot to Drive Folder node, select the correct folder or provide the folder ID.
    • Make sure permissions allow uploading from n8n.
  4. OpenAI

    • Provide an API key for GPT-4o in the Extract Product Info from Screenshot Text with GPT-4o node.
    • The prompt is structured to return structured product listings in JSON format.
  5. Split & Save

    • Split Each Product Entry takes the array of product objects from GPT and makes each one a separate execution.
    • Save Products info to Google Sheet writes structured fields into Sheet2 under:
      Product Name, price, purchased, ratings, deal, buyingOptions.

How to customize this workflow

  • Adjust the GPT prompt to return different product fields (e.g., shipping info, product categories).
  • Use a filter node to limit which types of products get written to the final sheet.
  • Add sentiment analysis to analyze review content if available.
  • Replace Google Drive with Dropbox or another file storage app.

Notes

  • Make sure you monitor your API usage on both Dumpling AI and OpenAI to avoid rate limits.
  • This setup is great for snapshot-based extraction where scraping is blocked or unreliable.

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 - Trigger on New URL in Sheet

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

Block 2 - Take Full-Page Screenshot using Dumpling AI

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 3 - Extract All Visible Data from Screenshot (Dumpling AI)

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 4 - Download Screenshot File

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 5 - Save Screenshot to Drive Folder

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

Block 6 - Log Screenshot URL to Spreadsheet

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

Block 7 - Extract Product Info from Screenshot Text with GPT-4o

Type / Role
@n8n/n8n-nodes-langchain.openAi - openAi
Config choices
Version 1.8

Block 8 - Split Each Product into Individual Record

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

Block 9 - Save Products info to Google Sheet

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

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

3. Summary Table

Workflow Extract product info from webpage screenshots using Dumpling AI and GPT-4o
Complexity intermediate
Nodes 11
Categories Market Research, AI Summarization
Author Yang
Published 22 May 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/4329/4329.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 Extract product info from webpage screenshots using Dumpling AI and GPT-4o do?

Who is this for? This workflow is perfect for eCommerce teams, market researchers, and product analysts who want to track or extract product information from websites that restrict scraping tools. ...

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.