Trustpilot scraper API
A Trustpilot scraper API that turns a company's public review profile into rows: star rating, title and full text, publish and experience dates, the reviewer's name, country and review count, the verified label, and the company's reply with its date. You pass the company's domain — wise.com, not a Trustpilot URL — and filter by stars or sort by recency.
$0.002 per delivered review · $2 free every month · Failed runs never billed
$ curl $QD/trustpilot_reviews/run \
-H "Authorization: Bearer $QD_API_KEY" \
-d '{"domain": "wise.com", "sort": "recency", "max_results": 20}'
{ "status": "done", "count": 20,
"results": [
{
"id": "…",
"title": "…",
"text": "…",
"rating": … } ],
"cost": 0.04 }
# 20 reviews × $0.002 · nothing delivered, nothing charged
Try it
Trustpilot reviews, running now
Change the input and run it against the live collector — nothing to install, no sign-up.
Run it from your own code, on your own inputs
Same collector, same rows — $2 of free API credit every month, no card.
What a Trustpilot scraper API does
Trustpilot pages ship their state as structured JSON inside the page itself, and that is what this collector reads — so a rating is a number and a date is a date, never a regex over displayed text. The reply thread matters as much as the review: a complaints dataset without the company's answers tells you who is angry but not who cares, and here both sides arrive on the same row.
The star filter is the practical half. Pulling only the 1-star reviews of a competitor is a churn-reasons dataset; pulling your own is a support backlog. Either is one call with stars set, priced per delivered review, and the run notes carry the profile's TrustScore and total review count so every export is anchored to the profile it came from.
Limits, in plain numbers
Everything that bounds one run of this collector. No hidden throttles.
Max per run
100 reviews
Price
$0.002 / review
Per 1,000
$2.00
Failed runs
Free zero rows, zero charge
Free every month
$2 no card
Rate limit
60 req/min on the free tier
What one review looks like
Every delivered review carries these fields. Nullable means the source did not publish it — the field stays empty instead of being guessed.
| Field | Type | What it holds |
|---|---|---|
rank | integer | 1-based position in the requested order. |
page | integer | Profile page the review came from. |
id | string · nullable | Trustpilot review id. |
title | string · nullable | Review title. |
text | string · nullable | Full review text. |
rating | integer · nullable | Star rating (1–5). |
date | string · nullable | Publish date (ISO 8601). |
experience_date | string · nullable | Date of the reviewed experience (ISO 8601). |
reviewer | string · nullable | Reviewer display name. |
reviewer_country | string · nullable | Reviewer country code. |
reviewer_reviews | integer · nullable | How many reviews the reviewer has written. |
verified | boolean | True when Trustpilot marks the review as verified. |
likes | integer | Useful votes on the review. |
reply | string · nullable | Company reply text, when present. |
reply_date | string · nullable | Company reply date (ISO 8601). |
url | string · nullable | Direct link to the review. |
Inputs
The whole request. Anything you leave out falls back to the default shown in the catalog.
| Input | Type | Required | What it does |
|---|---|---|---|
domain | string | yes | The reviewed company's domain, e.g. wise.com (not the Trustpilot URL). |
sort | string | no | Review order (default recency). One of: recency, relevance. |
stars | integer | no | Only reviews with this star rating (1–5). Omit for all. |
country | string | no | ISO 3166-1 alpha-2 code — proxy exit geo. Omit for the default pool. |
max_results | integer | no | How many reviews to deliver at most (1–100). You pay only for delivered reviews. |
Pricing
Trustpilot scraper API pricing
$0.002 per delivered review. A run that delivers nothing costs nothing: blocked pages, challenges and retries are on us, and the $2 monthly allowance covers about 1,000 reviews before you spend anything.
Pay as you go
- $2 free credit / month
- 60 requests / min
- List unit prices
Starter
- $15 free credit / month
- 300 requests / min
- 10% off unit prices
Growth
- $50 free credit / month
- 600 requests / min
- 20% off unit prices
Scale
- $250 free credit / month
- 1,200 requests / min
- 30% off unit prices
Same wallet, same key and same $2 monthly allowance as every other Data API. Prices are launch pricing read live from the billing config — GET /v1/scraper/collectors returns the price your key actually pays.
Integration
One POST, typed rows
Base URL https://api.quanticdata.io/v1, Bearer auth, the same key as every other Data API. Endpoint: POST /v1/.
curl -X POST https://api.quanticdata.io/v1/scraper/collectors/trustpilot_reviews/run \
-H "Authorization: Bearer $QD_API_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"wise.com","sort":"recency","max_results":20}'
What people build with the Trustpilot scraper API
Three shapes of work this endpoint was designed around.
Churn and complaint mining
Filter a competitor's profile to 1–2 stars and you have the reasons customers leave them, written by the customers themselves — sortable by date to see whether a problem is historic or current.
Reply-rate benchmarking
The reply and reply_date columns make response behaviour measurable: share of reviews answered and how fast, across every brand you track.
Reputation monitoring
Re-run with sort recency and diff against the previous pull: new reviews, rating drift and fresh replies land in your warehouse on your schedule.
Trustpilot scraper API versus rolling your own
The differences that actually cost time when you build this in-house.
| DIY scraper | This collector | |
|---|---|---|
| What you pass | A Trustpilot page URL to scrape and parse | The company domain — the collector finds and reads the profile |
| Fields | Whatever survives your selectors after the next redesign | The page's own JSON: exact ratings, dates, verification, replies |
| Coverage | One page unless you build pagination | Paginates to max_results, star-filtered server-side |
Sources and standards
The platform documentation and standards this collector is built against — check any claim on this page against the primary source:
Does it need a Trustpilot account or API key?
No. It reads public review profiles only — nothing is logged in, and usage is metered on the QuanticData key you already hold, like every collector in the catalog.
How many reviews can one run deliver?
Up to 100 per run (20 per profile page), newest or most relevant first. For a full historical export, run with sort recency and page through runs — you pay per delivered review either way.
Can I get only negative reviews?
Yes — set stars to 1 (or any single rating 1–5) and the profile is filtered server-side before rows are delivered, so a 1-star pull does not burn budget on 5-star rows.
Do I get the company's responses too?
Yes: reply and reply_date ride on each review row when the company answered, which is what makes response-rate and response-time measurable.
Is there a free Trustpilot scraper API?
Every account gets $2 of credit every month with no card, which is about 1,000 delivered reviews on this endpoint at $0.002 each. It renews monthly, and a run that delivers nothing is never billed — so a failed or blocked attempt does not eat the allowance.
How much does one run cost?
Multiply the rows you actually receive by $0.002. A run capped at 100 reviews — the maximum for this collector — costs $0.2 if every row comes back, and less when the source has fewer. Volume tiers take up to 30% off, and GET /v1/scraper/collectors returns the price your key actually pays.
Run the Trustpilot scraper API now
$2 of free credit every month, no card. Your key returns its own prices from GET /v1/scraper/collectors.