Trustpilot Company Review
Trustpilot Company Review is used to fetch company review data from Trustpilot.
- Fetch company reviews by review page URL
- Support page-based review pagination
- Return company profile data, rating distribution, and review items
- Suitable for reputation monitoring and custom review data workflows
Use XCrawl to Fetch Trustpilot Company Reviews
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_company_review",
"location": "US",
"company_reviews_url_list": ["https://www.trustpilot.com/review/iproyal.com"],
"start_page": 1,
"pages": 1
}'Request parameter notes:
enginemust betrustpilot_company_reviewlocationspecifies the target regioncompany_reviews_url_listaccepts one or more company review page URLsstart_pagespecifies the start pagepagesspecifies how many pages to fetch
Response Example
{
"result": [
{
"company_name": "IPRoyal",
"company_rating": 4.6,
"total_reviews": 3295,
"reviews": [
{
"title": "I had a great experience with IPRoyal…",
"rating": 5,
"consumer_name": "Nando BR"
}
]
}
]
}Parameters
Required Parameters
| Parameter | Type | Description |
|---|---|---|
location | string | Specifies the target region. |
company_reviews_url_list | array | Accepts one or more Trustpilot company review page URLs. |
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 company review page URL. |
current_page | number | Current page number. |
total_pages | number | Total page count. |
company_name | string | Company name. |
company_website_url | string | Company website URL. |
company_country | string | Company country or region. |
total_reviews | number | Total review count. |
company_rating | number | Company rating. |
reviews | array | Review list. |
similar_company_units | array | Similar company list. |
Review Fields
Each item in reviews[] includes:
| Field | Type | Description |
|---|---|---|
id | string | Review id. |
title | string | Review title. |
text | string | Review body text. |
rating | number | Review rating. |
consumer_name | string | Reviewer name. |
language | string | Review language. |
country_code | string | Reviewer country or region code. |
reply_message | string | Merchant reply text. |
experienced_date | string | Experience date. |
