# G2 competitor review monitoring workflow

**Use case:** 

Collect recent G2 reviews across collaboration products for scheduled competitive intelligence and change tracking.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://www.g2.com/products/slack/reviews"
    },
    {
      "url": "https://www.g2.com/products/microsoft-teams/reviews"
    },
    {
      "url": "https://www.g2.com/products/zoom-workplace/reviews"
    }
  ],
  "maxReviews": 60,
  "sortBy": "newest",
  "minRating": 1,
  "maxRating": 5,
  "sinceDate": "2026-01-01T00:00:00.000Z"
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Review",
    "format": "string"
  },
  "pros": {
    "label": "Pros",
    "format": "string"
  },
  "cons": {
    "label": "Cons",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "string"
  },
  "reviewerCountry": {
    "label": "Country",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published",
    "format": "string"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "reviewUrl": {
    "label": "G2 review",
    "format": "string"
  }
}
```

## About this Actor

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