# G2 Reviews Dataset for RAG and SaaS Research

**Use case:** 

Build a structured G2 reviews dataset for internal search, RAG, product research, and voice-of-customer analysis from public product review pages.

## Input

```json
{
  "mode": "product_reviews",
  "productUrls": [
    "https://www.g2.com/products/hubspot-sales-hub/reviews"
  ],
  "maxReviews": 150,
  "sortReviews": "newest",
  "minRating": 8,
  "searchQuery": "CRM",
  "maxProducts": 10
}
```

## Output

```json
{
  "reviewId": {
    "label": "ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "nps": {
    "label": "NPS",
    "format": "number"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "submittedAt": {
    "label": "Date",
    "format": "text"
  },
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [G2 Reviews & Products Scraper](https://apify.com/automation-lab/g2-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/g2-scraper) to learn more, explore other use cases, and run it yourself.