# G2 CRM Product Search Scraper

**Use case:** 

Scrape G2 product search results for CRM software names, ratings, review counts, and product metadata.

## Input

```json
{
  "mode": "product_search",
  "productUrls": [
    "https://www.g2.com/products/slack/reviews"
  ],
  "maxReviews": 20,
  "sortReviews": "newest",
  "minRating": 8,
  "searchQuery": "CRM software",
  "maxProducts": 50
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "vendorName": {
    "label": "Vendor Name",
    "format": "string"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "number"
  },
  "averageRating": {
    "label": "Average Rating",
    "format": "number"
  },
  "starRating": {
    "label": "Star Rating",
    "format": "number"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

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