🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

n8n-nodes-shopgraph

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-nodes-shopgraph

n8n community node for product data extraction with per-field confidence scoring and extraction provenance. Returns UCP-compliant JSON.

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

n8n-nodes-shopgraph

n8n community node for ShopGraph -- product data extraction that tells you when it's guessing. Feed it a product page URL (or raw HTML) and get back structured fields (name, brand, price, images, availability, categories) with per-field confidence scores, so your workflows know what to trust.

Installation

In your n8n instance, go to Settings > Community Nodes and install:

n8n-nodes-shopgraph

Or install manually:

npm install n8n-nodes-shopgraph

Credential Setup

  • In n8n, go to Credentials > New Credential > ShopGraph API.
  • Enter your API key (starts with sg_live_...). Get one at shopgraph.dev/dashboard.
  • Optionally change the Base URL if you are running a self-hosted instance.

Operations

OperationDescription
EnrichExtract structured product data from a URL
Enrich HTMLExtract structured product data from raw HTML content

Parameters

  • URL (Enrich) -- The product page URL to extract data from.
  • HTML (Enrich HTML) -- Raw HTML content of a product page.
  • Format -- Response format: ShopGraph (default) or UCP.

Example Output

{
  "product": {
    "url": "https://www.example.com/product/widget",
    "product_name": "ACME Widget Pro",
    "brand": "ACME",
    "price": { "amount": 49.99, "currency": "USD" },
    "availability": "in_stock",
    "categories": ["Widgets", "Tools"],
    "image_urls": ["https://..."],
    "confidence": { "overall": 0.93 },
    "_shopgraph": {
      "extraction_method": "schema_org",
      "data_source": "live",
      "field_confidence": {}
    }
  },
  "cached": false,
  "credit_mode": "standard"
}

Keywords

n8n-community-node-package

FAQs

Package last updated on 26 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts