# Sales battlecard from G2 pros, cons and ratings

**Use case:** 

Compare your product against two rivals on public G2 reviews and get the repeated pros, the repeated cons and the average rating of each one, side by side.

## Input

```json
{
  "clientProductUrl": "hubspot-marketing-hub",
  "competitorProductUrls": [
    "salesforce-sales-cloud",
    "zoho-crm"
  ],
  "maxReviewsPerProduct": 50,
  "lookbackDays": 365,
  "minCriticalRating": 3,
  "upstreamActorId": "automation-lab/g2-scraper",
  "upstreamInputOverrides": {}
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "role": {
    "label": "Role",
    "format": "string"
  },
  "productRef": {
    "label": "Product ref",
    "format": "string"
  },
  "analyzedAt": {
    "label": "Analyzed at",
    "format": "string"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "number"
  },
  "averageRating": {
    "label": "Average rating",
    "format": "number"
  },
  "ratingDistribution": {
    "label": "Rating distribution",
    "format": "object"
  },
  "npsProxy": {
    "label": "Nps proxy",
    "format": "number"
  },
  "prosTop": {
    "label": "Pros top",
    "format": "array"
  },
  "consTop": {
    "label": "Cons top",
    "format": "array"
  },
  "switchReasonsTop": {
    "label": "Switch reasons top",
    "format": "array"
  },
  "criticalRecentReviews": {
    "label": "Critical recent reviews",
    "format": "array"
  },
  "error": {
    "label": "Collection error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [G2 Reviews Scraper & Competitor Intel Report](https://apify.com/davidbenittah/g2-competitor-review-intel) with a specific input configuration. Visit the [Actor detail page](https://apify.com/davidbenittah/g2-competitor-review-intel) to learn more, explore other use cases, and run it yourself.