# G2 Competitor Intelligence Scraper

**Use case:** 

Compare G2 products in a software category and export ratings, review counts, product metadata, and category positioning for competitive research.

## Input

```json
{
  "mode": "category_browse",
  "productUrls": [
    "https://www.g2.com/products/slack/reviews"
  ],
  "maxReviews": 20,
  "sortReviews": "newest",
  "minRating": 8,
  "searchQuery": "Project Management",
  "maxProducts": 75
}
```

## 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.