# Compare TrustScores of several competitors

**Use case:** 

Search Trustpilot for a keyword and get every matching company with its TrustScore, star rating and review count in one table. Sort it to see who leads the niche and who is slipping.

## Input

```json
{
  "mode": "companies",
  "companies": [
    "www.amazon.com"
  ],
  "maxReviewsPerCompany": 40,
  "maxTotalReviews": 0,
  "fullCoverage": true,
  "stars": [],
  "languages": [],
  "dateRange": "all",
  "verifiedOnly": false,
  "withRepliesOnly": false,
  "topics": [],
  "sort": "recency",
  "includeCompanyProfile": true,
  "includeReviewerDetails": true,
  "resetDedupMemory": false,
  "searchQueries": [
    "car insurance"
  ],
  "categories": [],
  "claimedOnly": false,
  "maxCompanies": 20,
  "enrichCompanyProfiles": false,
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "name": {
    "label": "Company",
    "format": "text"
  },
  "trustScore": {
    "label": "TrustScore",
    "format": "number"
  },
  "stars": {
    "label": "Stars"
  },
  "numberOfReviews": {
    "label": "Number of reviews",
    "format": "number"
  },
  "primaryCategory": {
    "label": "Category",
    "format": "text"
  },
  "countryCode": {
    "label": "Country code"
  },
  "isClaimed": {
    "label": "Claimed",
    "format": "boolean"
  },
  "contact": {
    "label": "Contact"
  },
  "websiteUrl": {
    "label": "Website url"
  },
  "trustpilotUrl": {
    "label": "Trustpilot",
    "format": "link"
  },
  "type": {
    "label": "Row type"
  }
}
```

## About this Actor

This example demonstrates how to use [Trustpilot Reviews Scraper: Coverage Per Company](https://apify.com/automation_craft/trustpilot-reviews-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation_craft/trustpilot-reviews-scraper.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/automation_craft/trustpilot-reviews-scraper.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`).
