# Slack G2 reviews extractor

**Use case:** 

Extract public Slack reviews from the G2 RSS feed with ratings, reviewer role, pros, and cons.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://www.g2.com/products/slack/reviews.rss"
    }
  ],
  "productSlugs": [
    "slack"
  ],
  "maxReviewsPerProduct": 25,
  "includeRawFeed": false
}
```

## Output

```json
{
  "productSlug": {
    "label": "Product slug"
  },
  "productName": {
    "label": "Product"
  },
  "reviewId": {
    "label": "Review ID"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  },
  "title": {
    "label": "Review title"
  },
  "body": {
    "label": "Review body"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewerName": {
    "label": "Reviewer"
  },
  "reviewerRole": {
    "label": "Reviewer role"
  },
  "reviewerCompanySize": {
    "label": "Company size"
  },
  "pros": {
    "label": "Pros"
  },
  "cons": {
    "label": "Cons"
  },
  "publishedAt": {
    "label": "Published at"
  },
  "sourceUrl": {
    "label": "RSS feed URL",
    "format": "link"
  },
  "sourceStatus": {
    "label": "Source status"
  },
  "error": {
    "label": "Error"
  },
  "retrievedAt": {
    "label": "Retrieved at"
  },
  "rawFeed": {
    "label": "Raw RSS XML"
  }
}
```

## About this Actor

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