# Collect a Capterra review corpus

**Use case:** 

Gather review titles, bodies, pros, cons, and reviewer details for a focused software feedback corpus ready for analysis.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.capterra.com/p/135003/Slack/reviews/"
    }
  ],
  "searchQuery": "project management software",
  "maxReviewsPerProduct": 10,
  "maxProductsPerSearch": 5,
  "includeReviews": true,
  "sortReviewsBy": "helpful",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  },
  "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"
  },
  "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 [Capterra Reviews Scraper](https://apify.com/khadinakbar/capterra-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/capterra-reviews-scraper) to learn more, explore other use cases, and run it yourself.