# G2 reviews extractor for software analysis

**Use case:** 

Extract recent public G2 software reviews, ratings, reviewer context, pros and cons for sentiment and product analysis.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://www.g2.com/products/slack/reviews"
    }
  ],
  "maxReviews": 20,
  "sortBy": "newest",
  "minRating": 1,
  "maxRating": 5
}
```

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