All posts
GuideJul 8, 2026 · 9 min

How to Automate Trustpilot Review Responses in 2026

Trustpilot lets you automate replies via its API, but it's paywalled while manual replies stay free. Here's the real automation gap for app teams.

RA

The Argus Team

Reply Argus

Yes, you can automate Trustpilot review responses. Trustpilot ships a write API that posts replies to reviews programmatically, so a script or a tool can answer a review without anyone opening the dashboard. The catch that trips most teams is the price of admission: that API sits behind a paid plan, while the manual reply box in the Trustpilot Business inbox is free on every tier, including the Free plan.

So the real question isn't 'can I automate it' but 'is the API worth paying for, or do I just need a fast human-in-the-loop workflow.' If you run a SaaS product, you're probably asking because you have a Trustpilot page and an app on the App Store or Google Play, and you're tired of babysitting reviews across all of them. Let's cover what Trustpilot automation can and can't do, then the part nobody tells you: the app stores are a different surface with the same customers, and they automate very differently.

The one-line version

Manual replies on Trustpilot are free in the Business dashboard. Programmatic replies via the Service Reviews API require OAuth credentials and a paid API plan. There's no free auto-reply tier. If your product also lives on the App Store or Google Play, those stores are where reply automation gets both cheaper and more powerful.

How Trustpilot review replies actually work

Start with the free path, because most teams never need more. Inside Trustpilot Business, you go to Manage reviews, then Service reviews, then Inbox, and every review has a reply box beneath it. You type, you post, the consumer gets notified, and your response shows publicly under their review. That's it. It costs nothing and it works on the Free plan.

Trustpilot has layered AI on top of this for paying customers: on higher tiers, the dashboard suggests a drafted response tuned to the review's length and sentiment, and you edit and approve before it sends. Useful, but still a human clicking through the dashboard one review at a time. Nothing about the built-in inbox is truly hands-off. For that you need the API.

What 'automating' a Trustpilot response really means

Automation, in the strict sense, means a reply posts without a person in the dashboard. On Trustpilot that runs through the Service Reviews API: you authenticate with OAuth business credentials, read reviews from the private endpoints, and post a reply by calling the reply method for a specific review id. Roughly:

http
POST https://api.trustpilot.com/v1/private/reviews/{reviewId}/reply
Authorization: Bearer {access_token}
Content-Type: application/json

{
  "message": "Thanks for the detailed feedback — the sync bug you hit shipped a fix in this week's release. Reach us at support@ if it lingers and we'll dig into your account directly."
}
Trustpilot's Service Reviews API posts a reply to a single review. The private endpoints need OAuth business credentials — which is where the paywall lives.

Wire that into a webhook or a poller and you have real automation: a new review lands, your service reads it, generates a response, and posts it back with no human touch. This is the same shape as automating app-store replies, and if you've read our [reply rules for every app store](/blog/reply-rules-for-every-app-store) the pattern will feel familiar — authenticate, read, draft, post.

The catch: the API is behind a paywall

Here's where it gets honest. Those `private` endpoints aren't in the free tier. API access is a paid capability, generally bundled into Trustpilot's higher business plans or sold as an API add-on, and Trustpilot doesn't publish that pricing openly the way it publishes the consumer-facing tiers. As of 2026 the practical gate is a paid subscription plus an API entitlement, and Trustpilot handles that pricing through sales rather than a public tier — so budget a conversation with them to confirm what write access to the Service Reviews API costs for your volume.

That changes the math. If you get a handful of Trustpilot reviews a week, paying for API access purely to auto-post replies rarely pencils out; the free dashboard, maybe with Trustpilot's AI suggestions on a mid tier, does the job. API automation earns its keep at real volume, or when you're routing reviews into a central support system and want everything in one pipe. Decide on volume, not on the novelty of 'fully automated.'

You probably want a human in the loop anyway

Even where the API is available, fully unattended replies to public reviews are riskier than they look. A negative Trustpilot review is often a customer at their most frustrated, and a wrong auto-reply posted publicly can do more damage than silence. The safe pattern is approve-by-default: a machine drafts, a person glances, one click sends. Auto-post only the low-risk cases, like a plain five-star with no complaint. We argued the full case for this on the app-store side in [is it safe to auto-publish review replies](/blog/is-it-safe-to-auto-publish-app-review-replies), and the logic carries straight over.

A good reply, whether a human or a model drafts it, does the same few things: it names the specific issue, it's warm without being fake, and it points to a real resolution. Like this:

Signed up for the annual plan and the CSV export just spins forever on large files. Support took three days to even reply. Not what I expected for the price.

Reply

You're right on both counts and I'm sorry. The export timeout on big files was a queue bug we shipped a fix for this week — large exports now run in the background and email you the file. And a three-day support reply is not our standard; I've flagged your ticket to the lead directly. If the export still stalls, reply here or email priya@ and I'll handle it personally.

That reply would land the same on Trustpilot, in an App Store response, or in a Google Play reply. The instinct is identical across every review surface. What changes is the plumbing underneath — and that's the part worth thinking about if you ship an app.

Same customers, a different surface: your app stores

Here's the thing most Trustpilot searches miss. If you're a SaaS company with an app, your customers review you in two places. They rate the service on Trustpilot and they rate the app on the App Store and Google Play. Same people, same complaints, different surfaces, and the app stores are where reply automation is genuinely stronger and, unlike Trustpilot's API, doesn't sit behind a separate paywall.

Both Apple and Google give you a first-party developer reply for free. Google Play caps replies at a hard 350 characters; Apple publishes no official limit (community testing suggests a few thousand characters) and notifies the reviewer when your reply posts. We break the two down in [App Store vs Google Play review replies](/blog/app-store-vs-google-play-review-replies). And the payoff is measured: Google reported at I/O 2019 that responding developers see an average lift of about 0.7 stars, and a study of over four million reviews by Hassan et al. found users were roughly six times more likely to raise their rating after a reply (4.4% versus 0.7%). That's app-store data, not Trustpilot data, but it's the surface where responding provably moves the number that gates your installs.

  1. 1

    Step 1 — Map both surfaces

    List where your customers actually review you: Trustpilot for the service, plus the App Store and Google Play for the app. Treat them as one feedback stream, not three inboxes to forget about separately.

  2. 2

    Step 2 — Pick the automation that fits each

    For Trustpilot, decide whether your review volume justifies the paid API or whether the free dashboard is enough. For the app stores, wire up the first-party developer reply — it's free and it moves ratings.

  3. 3

    Step 3 — Draft with a human gate

    Let a model draft every reply, sized to each surface's limit and in the reviewer's language, then approve before it posts. Auto-publish only the clean, low-risk cases you've explicitly opted into.

  4. 4

    Step 4 — Route complaints into the roadmap

    A recurring one-star is a bug report with a customer attached. Cluster the themes across all three surfaces and ship the fixes — the reply closes the loop, the fix is the real answer.

Steps 1 through 4 are a lot of manual reading and re-typing once you're live on multiple surfaces, in more than one language, week after week. That's the point where doing it by hand quietly stops happening and reviews go cold during your busiest weeks.

This is the slice [ReplyArgus](/features) owns, and to be straight with you, it owns the app-store slice, not Trustpilot. It doesn't watch or post to Trustpilot, because that's a service-review surface with its own paywalled API, and we'd rather say so than pretend otherwise. What it does is take over the two app stores completely. It watches your Apple App Store and Google Play reviews in one inbox and, for every written review, drafts a grounded, on-brand reply in the reviewer's own language (100+ supported, both directions), sized to each store's limit. You approve in a click, or opt into rule-based auto-publish for the clean cases by rating, keyword, or language. And it clusters reviews into a PM roadmap board you can export to Jira, Notion, or Google Sheets, which is step 4 above done for you. Trustpilot you keep in its own dashboard; the app stores stop eating your Monday.

The shortcut

Automate the surface where it's free and high-impact first. Your App Store and Google Play replies move ratings measurably and cost nothing to post. ReplyArgus drafts every one in the reviewer's language, sized to each store's limit, on an approve-by-default flow. Keep Trustpilot in its own dashboard, and decide the paid API later based on real volume, not FOMO.

Frequently asked

Can you automate Trustpilot review responses?
Yes, through Trustpilot's Service Reviews API, which posts replies to reviews programmatically. It requires OAuth business credentials and a paid API plan, so there's no free auto-reply. Manual replies in the Trustpilot Business dashboard are free on every tier, including the Free plan.
Is replying to Trustpilot reviews free?
Manual replying is free. Every Trustpilot business plan, including the Free plan, gives you a reply box in the Manage reviews inbox where you can post a public response at no cost. Only the API, for automated or programmatic replies, sits behind a paid plan.
Should I auto-post replies to Trustpilot reviews?
For most teams, no. Public reviews, especially negative ones, are high-stakes, and a wrong auto-reply can do more harm than silence. The safer pattern is approve-by-default: let a tool draft the reply, glance at it, and send in one click. Reserve fully unattended posting for clean, low-risk cases like a plain five-star with no complaint.
Does ReplyArgus support Trustpilot?
No. ReplyArgus watches and replies to the Apple App Store and Google Play only. Trustpilot is a separate service-review surface with its own paywalled API, and we don't want to claim coverage we don't have. If your product also has an app, ReplyArgus handles those two stores end to end while you keep Trustpilot in its own dashboard.
Which review surface should app companies automate first?
The app stores. Apple and Google both offer free first-party developer replies that measurably lift your rating (Google cited about +0.7 stars for responding developers at I/O 2019), whereas Trustpilot's automation is gated behind a paid API. Start where automation is free and provably moves your install-driving rating, then decide on the Trustpilot API by volume.
What's the character limit for a Trustpilot reply?
Trustpilot doesn't publish a strict public character limit for business replies, and in practice its reply box is generous. For comparison, Google Play caps developer replies at a hard 350 characters, and Apple publishes no official limit (community testing suggests a few thousand characters). Keep replies tight regardless — specificity beats length.

So the short answer holds: you can automate Trustpilot responses through its API, but it's a paid capability, and for most teams the free dashboard plus a human touch is smarter. The surface where automation is both free and provably worth it is your app stores. [Start free with ReplyArgus](/signup) (no card) and Argus drafts your first App Store and Google Play reply in minutes, so the reviews that gate your installs never sit waiting while you're busy with everything else.

Try it

Let Argus draft your next reply.

Watch it answer a real review in your voice. 10-day trial, no card to begin.

See the features or pricing.

Keep reading