# Trustpilot Company Reviews Scraper (`data_direct/trustpilot-company-reviews-scraper`) Actor

Get a company's Trustpilot reviews and full profile by domain, with rating, date, language and keyword filters

- **URL**: https://apify.com/data\_direct/trustpilot-company-reviews-scraper.md
- **Developed by:** [Data Direct](https://apify.com/data_direct) (community)
- **Categories:** Business, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 pages

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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 Company Reviews Scraper

Get a company's Trustpilot reviews and full profile by website domain. Each page returns up to 20 reviews; one call fetches up to 10 pages.

### Features

- Real-time Trustpilot data — results are fetched live at run time, never cached or stale
- No login, cookies, or proxy configuration needed — just provide the input and run
- Each result is pushed as a separate dataset item, exportable as JSON, CSV, or Excel
- Fast: a typical run finishes in seconds

### Input

| Field | Type | Required | Description |
|---|---|---|---|
| `domain` | string | yes | Company website domain (e.g. gossby.com) or its Trustpilot review-page URL (max 500 characters) |
| `pages` | integer | no | Number of pages to fetch, 1-10 (default: 1). Each page returns up to 20 reviews |
| `sort_by` | string | no | most\_relevant (default), newest One of: most\_relevant, newest. |
| `rating` | string | no | Only reviews with these star ratings, comma-separated 1-5 (e.g. 1,2 or 5) |
| `posted_ago` | string | no | Only reviews from this period: 30d, 3m, 6m, 12m (default: all time) One of: 30d, 3m, 6m, 12m. |
| `language` | string | no | 2-letter ISO 639-1 language code (e.g. en, de). Default: all languages |
| `verified` | boolean | no | Set to true to return only verified reviews |
| `with_replies` | boolean | no | Set to true to return only reviews the company has replied to |
| `query` | string | no | Only reviews matching this keyword or phrase (max 500 characters) |

### Pricing

This Actor is billed **per page of results** — **$0.005 per page**.

- Results come in pages. Use the `pages` input to choose how many pages to fetch (1–10); more pages means more results.
- You pay $0.005 for each page you fetch, so `pages: 3` costs **$0.015** and `pages: 1` costs **$0.005**.
- You’re only charged when a run succeeds. Failed runs are free.

### Example output

```json
{
  "company": {
    "business_unit_id": "5dc962f10fdaf000012b2f08",
    "name": "Gossby",
    "domain": "gossby.com",
    "website": "https://gossby.com",
    "url": "https://www.trustpilot.com/review/gossby.com",
    "logo": "https://s3-eu-west-1.amazonaws.com/tpd/logos/5dc962f10fdaf000012b2f08/0x0.png",
    "rating": 4.2,
    "stars": 4.0,
    "review_count": 37687,
    "review_count_last_12_months": 1313,
    "reviews_per_rating": {
      "1": 3934,
      "2": 1110,
      "3": 1516,
      "4": 2829,
      "5": 28298
    },
    "categories": [
      "Gift Shop",
      "Clothing Store",
      "Hobby Store"
    ],
    "category_path": [
      "Shopping & Fashion",
      "Clothing & Underwear",
      "Clothing Store"
    ],
    "is_claimed": true,
    "claimed_date": "2019-11-15T04:26:53.000Z",
    "is_closed": false,
    "is_temporarily_closed": false,
    "is_collecting_reviews": false,
    "verification": {
      "verified_payment_method": false,
      "verified_user_identity": true,
      "verified_by_google": true
    },
    "reply_behavior": {
      "reply_percentage": 98.7012987012987,
      "average_days_to_reply": 0.25,
      "negative_reviews_with_replies": 228,
      "total_negative_reviews": 231,
      "last_reply_to_negative": "2026-09-06 01:30:03 UTC"
    },
    "email": "support@gossby.com",
    "phone_number": "(585) 366 8846",
    "address": "6901 Riverport Dr",
    "city": "Louisville",
    "zipcode": "40258",
    "country": "US",
    "locations_count": 0,
    "topics": [
      "Order",
      "Delivery service",
      "Product",
      "Quality",
      "Christmas",
      "Customer service",
      "Service",
      "Customer communications",
      "Price",
      "Location",
      "Website",
      "Recommendation",
      "Mistake",
      "Solution",
      
  ... (truncated)
```

### About

Maintained by **Data Direct** — a small suite of fast, reliable Trustpilot and web-data scrapers. Each actor returns clean, structured results with no login, cookies, or proxy setup required. Have a question or a custom data need? Open an issue on this actor.

# Actor input Schema

## `domain` (type: `string`):

Company website domain (e.g. gossby.com) or its Trustpilot review-page URL (max 500 characters)

## `pages` (type: `integer`):

Number of pages to fetch, 1-10 (default: 1). Each page returns up to 20 reviews and is billed as one request

## `sort_by` (type: `string`):

most\_relevant (default), newest

## `rating` (type: `string`):

Only reviews with these star ratings, comma-separated 1-5 (e.g. 1,2 or 5)

## `posted_ago` (type: `string`):

Only reviews from this period: 30d, 3m, 6m, 12m (default: all time)

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

2-letter ISO 639-1 language code (e.g. en, de). Default: all languages

## `verified` (type: `boolean`):

Set to true to return only verified reviews

## `with_replies` (type: `boolean`):

Set to true to return only reviews the company has replied to

## `query` (type: `string`):

Only reviews matching this keyword or phrase (max 500 characters)

## Actor input object example

```json
{
  "domain": "gossby.com",
  "pages": 1,
  "sort_by": "most_relevant",
  "verified": false,
  "with_replies": false
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "domain": "gossby.com"
};

// Run the Actor and wait for it to finish
const run = await client.actor("data_direct/trustpilot-company-reviews-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 = { "domain": "gossby.com" }

# Run the Actor and wait for it to finish
run = client.actor("data_direct/trustpilot-company-reviews-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 '{
  "domain": "gossby.com"
}' |
apify call data_direct/trustpilot-company-reviews-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,data_direct/trustpilot-company-reviews-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/m9l9g93r9zJatgaa2/builds/6wMPa4lzPRxWimgcR/openapi.json
