npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

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

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:

  1. In n8n, open Settings > Community Nodes.
  2. Select Install.
  3. Enter n8n-nodes-g2-reviews-api as the npm package name.
  4. 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.

  1. Sign in to the Apify Console.
  2. Open Settings > Integrations and copy your Personal API token.
  3. In n8n, create a new Apify API credential and paste the token.
  4. 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, and summary. 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

  1. Manual Trigger or Schedule Trigger.
  2. G2 Reviews: add your competitors' product review URLs, Sort Order Most Recent, Output Simplified.
  3. Google Sheets / Airtable: append productName, rating, title, pros, cons, and datePublished.

2. Build a win/loss dataset

  1. Manual Trigger.
  2. G2 Reviews: add your product and two alternatives, Output Selected Fields with productName, rating, reviewerRole, companySize, pros, and cons.
  3. Set / Code: group by companySize to compare how buyers describe each product.

3. Let an AI Agent summarize reviews

  1. AI Agent node.
  2. Attach G2 Reviews as a tool.
  3. 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

License

MIT