# G2 Slack Reviews Extractor

**Use case:** 

Extract G2 reviews for Slack with ratings, review text, reviewer details, and newest-first sorting.

## Input

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

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "nps": {
    "label": "Nps",
    "format": "number"
  },
  "starRating": {
    "label": "Star Rating",
    "format": "number"
  },
  "reviewerName": {
    "label": "Reviewer Name",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "helpfulVotes": {
    "label": "Helpful Votes",
    "format": "number"
  },
  "submittedAt": {
    "label": "Submitted At",
    "format": "string"
  },
  "productName": {
    "label": "Product Name",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

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