从 Trustpilot 提取商家资料和消费者评价,这是覆盖每个主要行业的全球评价平台。一次运行包含两类输出:商家资料(公司名、域名、网站、信任评分、平均评分、评价总数、类目、国家、Logo)和单条评价(1 至 5 星评分、标题、完整正文、作者姓名、作者国家、作者总评价数、发布日期、体验日期、已验证购买状态、商家回复文本和日期、来源如 Organic 或 Invited)。按关键词搜索或粘贴商家 URL。按星级筛选,按时间或相关性排序。我们只提取公开可见的评价页面,不绕过登录。
# 通过 Apify API 启动任务 curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~trustpilot-scraper/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "urls": ["https://www.trustpilot.com/review/amazon.com"], "maxReviewsPerBusiness": 50, "sortBy": "recency" }' # 或通过 MCP 与 AI 智能体一起使用: # https://mcp.apify.com?tools=santamaria-automations/trustpilot-scraper
| 字段 | 类型 | 示例 |
|---|---|---|
| type | string | review |
| company_name | string | Amazon |
| star_rating | integer | 5 |
| title | string | 发货快,描述准确 |
| review_text | string | 订单提前一天送达... |
| author_name | string | Jane D. |
| author_country | string | GB |
| date_posted | string | 2026-04-22 |
| verified | boolean | true |
| company_reply | string | 感谢您的好评 ... |
recency 或 relevance 排序,按特定星级筛选以隔离 1 星或 5 星评价maxReviewsPerBusiness: 0 只获取商家摘要,适合低成本的批量资料扫描点击上方 在 Apify 上打开,在浏览器中运行 trustpilot-scraper — 无需代码,无需安装。在 Apify 控制台,您可以获得:
要从自己的代码运行此 actor,您需要一个 Apify API 令牌。大约一分钟完成:
免费额度:Apify 每月为您的账户提供 5 美元平台使用额度,无需信用卡。足以有意义地测试任何 actor — 按典型 scraper 每条结果 0.001 美元计算,每月大约 5,000 条免费结果。
通过 Apify REST API 从任何语言运行此 actor。将 YOUR_TOKEN 替换为您的 API 令牌,并根据需要调整输入 JSON。
curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~trustpilot-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{}'// npm install apify-client
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('santamaria-automations/trustpilot-scraper').call({});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);# pip install apify-client
from apify_client import ApifyClient
client = ApifyClient('YOUR_TOKEN')
run = client.actor('santamaria-automations/trustpilot-scraper').call(run_input={})
items = list(client.dataset(run['defaultDatasetId']).iterate_items())
print(items)// dotnet add package Apify.Client
using Apify.Client;
var client = new ApifyClient("YOUR_TOKEN");
var run = await client.Actor("santamaria-automations/trustpilot-scraper").CallAsync(new { });
var items = await client.Dataset(run.DefaultDatasetId).ListItemsAsync();// Maven: com.apify:apify-client
import com.apify.client.ApifyClient;
ApifyClient client = new ApifyClient("YOUR_TOKEN");
ActorRun run = client.actor("santamaria-automations/trustpilot-scraper").call(Map.of());
List<Map<String,Object>> items = client.dataset(run.getDefaultDatasetId()).listItems();此 actor 可在 Apify MCP 服务器上使用,因此您可以从任何兼容 MCP 的 AI 客户端驱动它 — Claude Desktop、Claude.ai、Cursor、VS Code、LangChain、LlamaIndex 或自定义 agent — 无需编写代码。
https://mcp.apify.com?tools=santamaria-automations/trustpilot-scraper连接后的示例提示:
"使用 trustpilot-scraper 运行一次 scrape,并将结果以表格形式返回给我。"
支持动态工具发现的客户端(Claude.ai、VS Code)会通过 add-actor 自动接收完整的输入 schema。
从您喜欢的自动化工具触发此 actor。下面的每个平台都可以点几下就调用 Apify API — 无需代码。
@apify/n8n-nodes-apify)。santamaria-automations/trustpilot-scraper。https://api.apify.com/v2/acts/santamaria-automations~trustpilot-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN。application/json。https://api.apify.com/v2/acts/santamaria-automations~trustpilot-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN,方法 POST,body raw JSON。https://api.apify.com/v2/acts/santamaria-automations~trustpilot-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN。steps.http.$return_value。https://api.apify.com/v2/acts/santamaria-automations~trustpilot-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN,body 类型 JSON。