Trustpilot Business Details
Pricing
$0.70 / 1,000 results
Go to Apify Store
Trustpilot Business Details
Fetch a Trustpilot company profile by domain — trust score, stars, total reviews, categories, contact. Pay-per-result — $0.70 / 1,000 results.
Pricing
$0.70 / 1,000 results
Rating
0.0
(0)
Developer
Danny
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
6 days ago
Last modified
Categories
Share
Fetch a Trustpilot company profile by domain — trust score, stars, total reviews, categories, and contact info. Scraping runs server-side; this actor is a thin pipe that calls the API and pushes results to your dataset. Billing: pay-per-result — $0.70 / 1,000 results.
Input
| Field | Required | Description |
|---|---|---|
domain | yes* | Business domain, e.g. amazon.com |
business_unit_id | yes* | Alternative to domain |
Examples
{"domain": "amazon.com"}
{"domain": "netflix.com"}
Output
- One company profile:
companyId,companyName,companyUrl,trustScore,stars,numberOfReviews,categories,contactInfo. - * Provide either
domainorbusiness_unit_id.
Client examples
Python:
from apify_client import ApifyClientclient = ApifyClient("<APIFY_TOKEN>")run = client.actor("<ACTOR_ID>").call(run_input={"domain": "amazon.com"})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item)
Node.js:
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: '<APIFY_TOKEN>' });const run = await client.actor('<ACTOR_ID>').call({"domain": "amazon.com"});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);