# Trustpilot Reviews Browser Scraper (`flamboyant_liner/trustpilot-reviews-browser-scraper`) Actor

Scrape Trustpilot reviews for any company: review text, title, star rating, dates, reviewer name and country, verification, company replies and likes, plus the business profile with TrustScore, star rating, review counts, categories and claimed status. Filter by stars and language.

- **URL**: https://apify.com/flamboyant\_liner/trustpilot-reviews-browser-scraper.md
- **Developed by:** [Khrystyna Skotte](https://apify.com/flamboyant_liner) (community)
- **Categories:** Lead generation, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 records

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Trustpilot Reviews Scraper — reviews, TrustScore & business profile

Scrape Trustpilot reviews for any company by its website domain. Each review comes with the star
rating, title, full text, published and experience dates, reviewer name, country and review count,
verification status, source, likes, language and the company's reply. Add the business profile:
TrustScore, star rating, total and 12-month review counts, categories, claimed and closed status.

Trustpilot gates its pages behind a connection check that blocks plain HTTP clients and headless
browsers. This actor runs a real, headed browser on a residential IP, which passes it.

### Input

| Field | Default | Notes |
|---|---|---|
| `domains` | `["amazon.com"]` | Company websites as shown in Trustpilot URLs |
| `maxReviews` | `10` | Newest first, 20 per page |
| `stars` | all | e.g. `["1","2"]` for complaints only |
| `language` | `all` | Trustpilot language code such as `en`, `de`, `fr` |
| `includeBusinessInfo` | `true` | One extra record per company |

### Output

```json
{ "type": "business", "domain": "amazon.com", "companyName": "Amazon", "trustScore": 1.6, "stars": 1.5, "numberOfReviews": 48963, "numberOfReviewsLast12Months": 8945, "categories": ["Book Store", "Shoe Store"], "isClaimed": true, "isClosed": false, "websiteUrl": "https://www.amazon.com" }
{ "type": "review", "domain": "amazon.com", "reviewId": "6a9c30d26f3b70f291a4d68c", "reviewUrl": "https://www.trustpilot.com/reviews/6a9c30d26f3b70f291a4d68c", "rating": 1, "title": "False advertisement", "text": "Saw wicked 2 movie bundle on sale for $15 …", "publishedAt": "2026-09-05T17:10:10.000Z", "experiencedAt": "2026-09-05T00:00:00.000Z", "reviewerName": "Branded Rolling Trays", "reviewerCountry": "US", "reviewerReviewCount": 1, "isVerified": false, "source": "Organic", "likes": 0, "language": "en", "replyText": null, "replyAt": null }
```

### Use cases

Reputation monitoring, competitor benchmarking, complaint mining for product teams, sentiment
datasets, and due diligence on vendors.

### Notes

- A browser session costs more than a plain request, which the start fee reflects; reviews
  themselves are priced per record.
- Companies without a Trustpilot profile return a warning, not a failure.

# Actor input Schema

## `domains` (type: `array`):

Company websites as they appear in Trustpilot URLs, e.g. amazon.com, booking.com, revolut.com.

## `maxReviews` (type: `integer`):

Newest first, 20 per page.

## `stars` (type: `array`):

Only reviews with these ratings. Leave empty for all.

## `language` (type: `string`):

Trustpilot language code, or 'all'.

## `includeBusinessInfo` (type: `boolean`):

One record per company with TrustScore, star rating, review counts, categories and claimed status.

## `proxyConfiguration` (type: `object`):

Residential proxy is required.

## Actor input object example

```json
{
  "domains": [
    "amazon.com"
  ],
  "maxReviews": 10,
  "stars": [],
  "language": "all",
  "includeBusinessInfo": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

## `records` (type: `string`):

Dataset of reviews and business records (JSON).

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("flamboyant_liner/trustpilot-reviews-browser-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("flamboyant_liner/trustpilot-reviews-browser-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call flamboyant_liner/trustpilot-reviews-browser-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,flamboyant_liner/trustpilot-reviews-browser-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/TUNoncUrd35gz4ds0/builds/hkJUdxgSUk0u05mh7/openapi.json
