Trustpilot Business Details avatar

Trustpilot Business Details

Pricing

$0.70 / 1,000 results

Go to Apify Store
Trustpilot Business Details

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

Danny

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

6 days ago

Last modified

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

FieldRequiredDescription
domainyes*Business domain, e.g. amazon.com
business_unit_idyes*Alternative to domain

Examples

{"domain": "amazon.com"}
{"domain": "netflix.com"}

Output

  • One company profile: companyId, companyName, companyUrl, trustScore, stars, numberOfReviews, categories, contactInfo.
  • * Provide either domain or business_unit_id.

Client examples

Python:

from apify_client import ApifyClient
client = 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);