n8n-nodes-g2-reviews-api
v0.1.1
Published
Collect G2 product reviews with ratings, pros and cons, reviewer role, company size, and dates. Apify-backed n8n community node, pay per review, and usable as an AI agent tool.
Downloads
50
Maintainers
Readme
n8n-nodes-g2-reviews-api
An n8n community node that collects G2 product reviews as clean, structured data: rating, title, review text, pros and cons, reviewer role, company size, and date. It is backed by the G2 Reviews API on Apify and bills per review, so there are no subscriptions and no minimums.
Installation · Credentials · Operations · Output · Example workflows · Pricing · Resources
What it does
Give the node one or more G2 product review URLs, and it returns one item per review with the rating, title, review text, pros and cons, reviewer role, company size, and publish date. Optionally add one product-metadata item per product with category, star rating, review count, and competitors. It also works as an AI Agent tool, so an agent can pull and summarize reviews on demand.
- Collect reviews for one or many G2 products in a single run
- Cap reviews per product and choose a sort order
- Optionally include a product-metadata row per product
- Choose how much data to return per item: Simplified, Raw, or Selected Fields
Installation
Follow the n8n community nodes installation guide:
- In n8n, open Settings > Community Nodes.
- Select Install.
- Enter
n8n-nodes-g2-reviews-apias the npm package name. - Agree to the risks of using community nodes, then select Install.
After it installs, the G2 Reviews node appears in the nodes panel.
n8n Cloud only allows verified community nodes. Until this node is verified, install it on a self-hosted n8n instance.
Credentials
You need a free Apify account and an API token.
- Sign in to the Apify Console.
- Open Settings > Integrations and copy your Personal API token.
- In n8n, create a new Apify API credential and paste the token.
- Use the credential's Test button to confirm it works.
The node also supports Apify OAuth2 if you prefer to connect that way.
Operations
Review > Get collects reviews for one or more G2 products.
| Parameter | Description |
| --- | --- |
| Product Review URLs | One or more G2 product review URLs, for example https://www.g2.com/products/asana/reviews. Required. |
| Sort Order | Default relevance, most recent, most helpful, highest rated, or lowest rated. |
| Max Reviews per Product | How many reviews to return per product, from 1 to 1000. |
| Include Product Metadata | Add one product-metadata item per product. |
| Output | How much data to return: Simplified, Raw, or Selected Fields. |
Output
Each row is returned as its own n8n item. Rows are distinguished by result_type: a review, an optional product_metadata row, or an error row for a URL that could not be collected. The API returns more than ten fields, so the Output parameter lets you choose how much to return:
- Simplified (default): a compact object with
result_type,productName,rating,title,reviewText,pros,cons,reviewerRole,companySize,datePublished,verified,reviewUrl, andsummary. This mode is also used automatically when the node runs as an AI Agent tool, to keep responses small. - Raw: every field the API returns, using the original field names below.
- Selected Fields: pick exactly which fields to include.
Fields (Raw and Selected Fields)
| Field | Type | Description |
| --- | --- | --- |
| result_type | string | review, product_metadata, or error |
| productName | string | The G2 product this row belongs to |
| productUrl | string | The G2 product reviews URL that was collected |
| reviewId | string | Stable identifier for the review on G2 |
| rating | number | Star rating the reviewer gave, from 0 to 5 |
| title | string | The reviewer's headline for the review |
| reviewText | string | The full review body |
| pros | string | What the reviewer liked, when present |
| cons | string | What the reviewer disliked, when present |
| reviewerName | string | The review author's display name |
| reviewerRole | string | The reviewer's job title or role, when disclosed |
| companySize | string | The size band of the reviewer's company |
| datePublished | string | The date the review was published |
| tags | array | Review tags such as Validated Reviewer |
| verified | boolean | True when the review carries a validated-reviewer tag |
| reviewUrl | string | Direct link to the individual review |
| category | string | Product category (product_metadata rows only) |
| starRating | number | Overall product star rating (product_metadata rows only) |
| reviewCount | integer | Total number of reviews for the product (product_metadata rows only) |
| competitors | array | Listed competitors or alternatives (product_metadata rows only) |
| summary | string | Plain-language one-line interpretation of the review |
| fetched_at | string | ISO 8601 timestamp of when this row was produced |
| error_message | string | Human-readable error description (error rows only) |
| error_type | string | Machine-readable error category (error rows only) |
Example workflows
1. Track competitor sentiment in a sheet
- Manual Trigger or Schedule Trigger.
- G2 Reviews: add your competitors' product review URLs, Sort Order
Most Recent, OutputSimplified. - Google Sheets / Airtable: append
productName,rating,title,pros,cons, anddatePublished.
2. Build a win/loss dataset
- Manual Trigger.
- G2 Reviews: add your product and two alternatives, Output
Selected FieldswithproductName,rating,reviewerRole,companySize,pros, andcons. - Set / Code: group by
companySizeto compare how buyers describe each product.
3. Let an AI Agent summarize reviews
- AI Agent node.
- Attach G2 Reviews as a tool.
- Ask "Summarize the recent complaints about Asana on G2." The agent calls the node (in Simplified mode) and returns structured reviews to summarize.
Pricing
This node calls the G2 Reviews API on Apify, which is billed pay per review (about $0.004 per review), with no subscription and no minimums. The optional product-metadata add-on is billed separately per product. Apify also includes a free monthly usage tier that covers typical volumes. See the Actor page for current rates.
Resources
- G2 Reviews API on Apify
- Example repo and quick start
- npm package
- n8n community nodes documentation
- Apify n8n integration guide
