# Export Negative G2 Reviews (Pain Points)

**Use case:** 

Pull low-rated G2 software reviews worst-first: structured pros/cons, six sub-ratings, LLM-ready markdown. For churn and competitive analysis.

## Input

```json
{
  "mode": "reviews",
  "startUrls": [
    "slack"
  ],
  "maxReviewsPerProduct": 200,
  "minRating": 1,
  "maxRating": 3,
  "sortReviews": "rating_low",
  "verifiedReviewer": false,
  "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.