Trustpilot
Business Search
Find businesses on Trustpilot by company name or category. Returns the domain each review page is addressed by.
GET
/v1/trustpilot/search19 creditsheavyqueue onlyCalling 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/search 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": "search",
"params": {
"keyword": "<keyword>"
}
}'See batch tasks for the full lifecycle.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| keyword | string | required | Company name or business category. Up to 700 characters. |
| depth | number | optional | Results to return, 1-140. Default 10. Billed per 10. |
| task_id | string | optional | Collect an upstream task that timed out earlier instead of starting a new one. Pass the `task_id` from the failed task's error. |
Request
curl --request GET 'https://data-api.roketfy.com/v1/trustpilot/search?keyword=%3Ckeyword%3E' \
--header 'Authorization: Bearer YOUR_TOKEN'MCP
Available to AI agents as the tool trustpilot_search, with the same parameters and the same credit cost. The tool queues a task and returns its id, like the HTTP flow above.