# Monitor a company for new Trustpilot reviews weekly

**Use case:** 

Read the newest reviews of a company and remember them under a memory name, so the next scheduled run returns only reviews published since. Each row has rating, title, text, published date and the company reply.

## Input

```json
{
  "mode": "reviews",
  "companies": [
    "www.booking.com"
  ],
  "maxReviewsPerCompany": 40,
  "maxTotalReviews": 0,
  "fullCoverage": true,
  "stars": [],
  "languages": [],
  "dateRange": "last30days",
  "verifiedOnly": false,
  "withRepliesOnly": false,
  "topics": [],
  "sort": "recency",
  "includeCompanyProfile": true,
  "includeReviewerDetails": true,
  "dedupMemoryName": "booking-weekly-demo",
  "resetDedupMemory": false,
  "searchQueries": [],
  "categories": [],
  "claimedOnly": false,
  "maxCompanies": 100,
  "enrichCompanyProfiles": false,
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "companyDomain": {
    "label": "Company domain",
    "format": "text"
  },
  "companyName": {
    "label": "Company name"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Review title",
    "format": "text"
  },
  "text": {
    "label": "Review text",
    "format": "text"
  },
  "publishedDate": {
    "label": "Published",
    "format": "date"
  },
  "experiencedDate": {
    "label": "Date of experience"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "reviewer": {
    "label": "Reviewer"
  },
  "reply": {
    "label": "Company reply"
  },
  "likes": {
    "label": "Likes"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  },
  "reviewId": {
    "label": "Review id"
  },
  "shard": {
    "label": "Shard"
  },
  "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`).
