Trustpilot Company Review Scraper
Pricing
from $5.00 / 1,000 results
Trustpilot Company Review Scraper
Scrape Trustpilot company reviews at scale: rating, title, text, author, date and reply. Analyze customer sentiment and monitor reputation across competitors. Structured JSON output.
Pricing
from $5.00 / 1,000 results
Rating
0.0
(0)
Developer
Technical Dost Solutions
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
What this Actor does
Extract company review data from public Trustpilot review pages (or any other public review listing page) as clean, structured JSON.
It processes user-provided public URLs, prioritizes JSON-LD / schema.org structured data (Review, AggregateRating, Organization, LocalBusiness), and can optionally use a conservative fallback that reads visible public review blocks. It normalizes useful fields, deduplicates rows, and saves structured records to the Apify dataset.
Why this Actor is useful
Brand, product, and CX teams pay for this kind of extraction because it replaces manual copy-pasting of reviews, creates repeatable review monitoring, feeds spreadsheets, dashboards, and sentiment pipelines, and turns scattered public review pages into a clean, API-ready dataset.
Who this is for
- Brand and reputation managers
- Customer experience (CX) and support teams
- Product and marketing analysts
- Competitive intelligence researchers
- Agencies monitoring client reputation
- Data teams building review datasets
Common use cases
- Track new reviews for your company or competitors
- Feed review text and ratings into a sentiment pipeline
- Monitor average rating and total review count over time
- Build recurring reputation-monitoring datasets
- Export reviews for analysis in spreadsheets or BI tools
Input
| Field | Type | Description |
|---|---|---|
startUrls | array (required) | Public Trustpilot or review listing pages to extract from. Use only pages you may access without login or bypassing access controls. |
maxItems | integer | Maximum rows to save. Default 50, min 1, max 10000. |
maxConcurrency | integer | Pages processed in parallel. Default 3, min 1, max 20. |
extractionMode | string | structuredDataOnly or structuredDataWithFallback (default). The fallback safely reads visible public review blocks. |
requestTimeoutSecs | integer | Maximum time per page. Default 30, min 5, max 180. |
proxyConfiguration | object | Optional Apify proxy configuration where permitted by your source review. |
Output
| Field | Description |
|---|---|
companyName | Name of the reviewed company or business. |
companyDomain | Domain of the reviewed company when available. |
companyRatingValue | Aggregate rating value for the company when published. |
companyReviewCount | Total number of reviews reported for the company. |
reviewTitle | Title or headline of the individual review. |
reviewText | Body text of the review. |
reviewRating | Star rating given in the review (typically 1-5). |
reviewAuthor | Display name of the review author. |
reviewDate | Date the review was published. |
reviewUrl | Public URL of the review when available. |
sourceUrl | URL where the data was extracted. |
detectedAt | Timestamp when this Actor extracted the row. |
extractionMethod | structured_data for schema data, or fallback_public_review_listing for visible public reviews. |
confidenceScore | Heuristic confidence based on structured data availability and completeness. |
missingFields | Required fields that were not available from the source page. |
Sample input
{"startUrls": [{"url": "https://www.trustpilot.com/review/www.apify.com"}],"maxItems": 25,"maxConcurrency": 3,"extractionMode": "structuredDataWithFallback","requestTimeoutSecs": 30}
Sample output
{"companyName": "Apify","companyDomain": "apify.com","companyRatingValue": 4.6,"companyReviewCount": 128,"reviewTitle": "Excellent web scraping platform","reviewText": "The Actors are reliable and the support team is responsive.","reviewRating": 5,"reviewAuthor": "Jane D.","reviewDate": "2026-06-15","reviewUrl": "https://www.trustpilot.com/reviews/abc123","sourceUrl": "https://www.trustpilot.com/review/www.apify.com","detectedAt": "2026-06-27T00:00:00.000Z","extractionMethod": "structured_data","confidenceScore": 0.95,"missingFields": []}
Pricing
This Actor uses a pay-per-event model: $0.005 per review result saved to the dataset. You pay only for the structured review rows you receive, which makes recurring monitoring predictable and low-cost.
How to use
Run this Actor on Apify with public review page URLs, export the dataset as JSON, CSV, or Excel, or pull it through the Apify API. Connect the output to Google Sheets, Make, Zapier, a webhook, your CRM, or an internal dashboard. For monitoring, save the input as an Apify task and schedule recurring runs to catch new reviews.
Best practices
- Start with a small set of reviewed public review URLs.
- Prefer pages that expose schema.org / JSON-LD structured data.
- Use
structuredDataOnlyfor highest precision; usestructuredDataWithFallbackfor pages that only show visible review blocks. - Keep
maxConcurrencylow for smaller sites. - Review each source website's rules before scheduling recurring runs.
Compliance and responsible use
This Actor is for public data only. It must not be used to bypass logins, paywalls, CAPTCHAs, or security systems, to collect private or sensitive personal data, or to support spam or abuse. Reviews processed here should be publicly published review notices. You are responsible for following applicable laws and each source website's rules.
Limitations
- Output quality depends on the public structured data available on the source pages.
- Fallback extraction is intentionally conservative and only looks for visible public review block patterns. It does not claim universal site support.
- Dates and ratings are extracted as published; formats vary by site and are not reformatted or converted.
- Some fields may be empty when the source does not publish them; these appear in
missingFields. - The Actor does not claim support for any specific third-party review platform.
- Website markup and access policies can change.
Troubleshooting
- Empty output usually means the page has no public structured review data and no visible review-block patterns.
- Invalid URL errors mean one or more input URLs are malformed.
- Slow runs can usually be improved by lowering
maxConcurrency. - Missing fields are source-data limitations, not inferred values.
Changelog
- v0.1.0: Initial release with structured-data-first extraction, conservative public review-listing fallback, and confidence scoring.