Trustpilot Company Search
Trustpilot Company Search is used to fetch company search results from Trustpilot.
- Fetch company lists by keyword
- Support page-based search pagination
- Return company name, rating, review count, and category data
- Suitable for brand discovery and custom company catalog workflows
Use XCrawl to Fetch Trustpilot Company Search Results
Usage
curl -s -X POST 'https://run.xcrawl.com/v1/data' \
-H 'Authorization: Bearer $XCRAWL_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"engine": "trustpilot_search",
"location": "US",
"keyword_list": ["google"],
"start_page": 1,
"pages": 1
}'Request parameter notes:
enginemust betrustpilot_searchlocationspecifies the target regionkeyword_listaccepts one or more brand keywordsstart_pagespecifies the start pagepagesspecifies how many pages to fetch
Response Example
{
"result": [
{
"url": "https://www.trustpilot.com/search?page=1&query=google",
"current_page": 1,
"total_pages": 37,
"companys": [
{
"name": "Google",
"review_url": "https://www.trustpilot.com/review/maps.google.com",
"stars": 4,
"total_reviews": 5
}
]
}
]
}Parameters
Required Parameters
| Parameter | Type | Description |
|---|---|---|
location | string | Specifies the target region. |
keyword_list | array | Accepts one or more brand keywords. |
start_page | number | Start page number. |
pages | number | Number of pages to fetch. |
Parameter Notes
locationdefaults toUSstart_pagedefaults to1pagesdefaults to1
Response Fields
Response data is returned under result[].
| Field | Type | Description |
|---|---|---|
url | string | Current search page URL. |
current_page | number | Current page number. |
total_pages | number | Total page count. |
companys | array | Company result list. |
Company Fields
Each item in companys[] includes:
| Field | Type | Description |
|---|---|---|
id | string | Company id. |
name | string | Company name. |
website_url | string | Company website URL. |
review_url | string | Trustpilot review page URL. |
stars | number | Star score. |
total_reviews | number | Total review count. |
country | string | Country or region. |
categories | array | Company category list. |
