DocumentationDashboard

Trustpilot

Reviews

Trustpilot reviews for a business domain — rating, title, text, reviewer and any company reply.

GET/v1/trustpilot/reviews10 creditsheavyqueue only

Calling this endpoint

The source behind this endpoint answers from a queue, and that queue outlives an HTTP request — so there is no live call to make. Queue it as a task and poll for the result; /v1/trustpilot/reviews itself answers 400 async_only.

curl --request POST 'https://data-api.roketfy.com/v1/tasks' \
  --header 'Authorization: Bearer YOUR_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
  "platform": "trustpilot",
  "endpoint": "reviews",
  "params": {
    "domain": "<domain>"
  }
}'

See batch tasks for the full lifecycle.

Parameters

NameTypeRequiredDescription
domainstringrequiredThe business domain as Trustpilot lists it, e.g. "www.example.com" from trustpilot.com/review/www.example.com. Use Business Search to find it.
depthnumberoptionalReviews to return, 1-200. Default 20. Billed per 20.
sort_bystringoptionalReview ordering. Default relevance. One of: recency, relevance.
task_idstringoptionalCollect an upstream task that timed out earlier instead of starting a new one. Pass the `task_id` from the failed task's error.

MCP

Available to AI agents as the tool trustpilot_reviews, with the same parameters and the same credit cost. The tool queues a task and returns its id, like the HTTP flow above.