# Trustpilot review scraper for Pipedrive

**Use case:** 

Scrape Trustpilot reviews for Pipedrive with ratings, authors, dates, review text, verification level, language, and URLs.

## Input

```json
{
  "companyUrls": [
    "pipedrive.com"
  ],
  "maxReviewsPerCompany": 50,
  "languages": [
    "en"
  ],
  "sort": "recency",
  "date": "",
  "verified": false,
  "withReplies": false,
  "includeCompanyInfo": true
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "rating": {
    "label": "Stars",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Review",
    "format": "text"
  },
  "publishedDate": {
    "label": "Published",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "verificationLevel": {
    "label": "Verified",
    "format": "text"
  },
  "reviewUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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