# Scrape G2 Reviews + Competitor Switching Data

**Use case:** 

Extract which competitors users switched from, plus auto-ranked top-10 competitors per product, from G2 reviews. JSON or CSV.

## Input

```json
{
  "mode": "reviews",
  "startUrls": [
    "slack"
  ],
  "maxReviewsPerProduct": 50,
  "minRating": 1,
  "maxRating": 5,
  "sortReviews": "newest",
  "verifiedReviewer": true,
  "searchQuery": "communication",
  "maxProducts": 25
}
```

## Output

```json
{
  "productName": {
    "label": "Product name (review row)",
    "format": "string"
  },
  "submittedAt": {
    "label": "Submitted at",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer name",
    "format": "string"
  },
  "reviewerIndustry": {
    "label": "Reviewer industry",
    "format": "string"
  },
  "companySize": {
    "label": "Company size",
    "format": "string"
  },
  "reviewerCountry": {
    "label": "Reviewer country",
    "format": "string"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "string"
  },
  "pros": {
    "label": "Pros",
    "format": "string"
  },
  "cons": {
    "label": "Cons",
    "format": "string"
  },
  "problemsSolved": {
    "label": "Problems solved",
    "format": "string"
  },
  "overallRating": {
    "label": "Overall rating",
    "format": "integer"
  },
  "didSwitchFromCompetitor": {
    "label": "Switched from competitor",
    "format": "boolean"
  },
  "previousCompetitors": {
    "label": "Previous competitors",
    "format": "array"
  },
  "isIncentivized": {
    "label": "Incentivized",
    "format": "boolean"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  }
}
```

## About this Actor

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