# Read the pros and cons in Capterra reviews

**Use case:** 

Give product pages and get reviews with rating, pros, cons and reviewer role.

## Input

```json
{
  "products": [
    "https://www.capterra.com/p/135003/Slack/",
    "https://www.capterra.com/p/211559/Trello/"
  ],
  "maxReviewsPerProduct": 100,
  "maxProducts": 10,
  "sortBy": "asServed",
  "minRating": 1,
  "maxRating": 5,
  "companySizes": [],
  "timeUsedProduct": [],
  "sourceSites": [],
  "excludeIncentivized": false,
  "requireProsAndCons": false,
  "writtenAfter": "",
  "writtenBefore": "",
  "searchText": "",
  "maxPagesPerProduct": 100,
  "requestDelaySeconds": 2,
  "retries": 3
}
```

## Output

```json
{
  "product_name": {
    "label": "Product name"
  },
  "written_on_date": {
    "label": "Written on date"
  },
  "overall_rating": {
    "label": "Overall rating"
  },
  "title": {
    "label": "Title"
  },
  "pros": {
    "label": "Pros"
  },
  "cons": {
    "label": "Cons"
  },
  "reviewer_job_title": {
    "label": "Reviewer job title"
  },
  "reviewer_company_size": {
    "label": "Reviewer company size"
  },
  "reviewer_time_used": {
    "label": "Reviewer time used"
  }
}
```

## About this Actor

This example demonstrates how to use [Capterra Reviews Scraper - Pros, Cons & Ratings](https://apify.com/s-r/capterra-reviews.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/s-r/capterra-reviews.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/s-r/capterra-reviews.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
