All scrapers
Business data
Trustpilot Scraper
trustpilot.com
100% Success rate
4.2s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over
Trustpilot aggregates company reviews, and its pages serve an interstitial challenge to plain requests. ScrapeUnblocker renders them as a visitor would see them and returns the score, review count and review text for each company, holding a clean 100% over a full 1,000-call run at around four seconds a page.
What you can extract
- Company name, domain and category
- TrustScore and total review count
- Star distribution across ratings
- Individual review text, author and date
- Company reply and verification status
How to scrape it
curl -X POST \
-H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
"https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.trustpilot.com%2F&parsed_data=true"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/getPageSource",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"url": "https://www.trustpilot.com/", "parsed_data": True},
)
print(resp.text)import { ScrapeUnblockerClient } from 'scrapeunblocker';
const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });
const results = await su.getPageSource({
url: 'https://www.trustpilot.com/',
parsedData: true,
});
console.log(results); Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.
Related scrapers
Start scraping this site today
Free tier included. No credit card required to test it.