# Collect a customer review corpus from G2

**Use case:** 

Gather review text, pros, cons, and reviewer context for research, analysis, and citation-ready corpora from public G2 pages.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.g2.com/products/slack/reviews"
    }
  ],
  "searchQuery": "project management software",
  "maxReviewsPerProduct": 25,
  "maxProductsPerSearch": 5,
  "includeReviews": true,
  "sortReviewsBy": "newest",
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "debug": false
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "string"
  },
  "productName": {
    "label": "Product",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewTitle": {
    "label": "Title",
    "format": "string"
  },
  "reviewBody": {
    "label": "Review",
    "format": "string"
  },
  "pros": {
    "label": "Pros",
    "format": "array"
  },
  "cons": {
    "label": "Cons",
    "format": "array"
  },
  "reviewer": {
    "label": "Reviewer",
    "format": "object"
  },
  "reviewDate": {
    "label": "Date",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  },
  "productRating": {
    "label": "Product rating",
    "format": "number"
  },
  "productReviewCount": {
    "label": "Total reviews",
    "format": "integer"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  }
}
```

## About this Actor

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