/catalog/products/{idOrSlug}/reviews
Get product reviews
Returns a page of approved reviews plus a rating summary (average and distribution) covering all approved reviews for the product on this channel.
Path parameters
| Field | Type |
|---|---|
idOrSlug
Required
|
string |
Query parameters
| Field | Type |
|---|---|
page
|
integer |
pageSize
|
integer |
sort
|
string |
Responses
ProductReviewsResponse
| Field | Type |
|---|---|
hasMore
|
boolean |
items
|
ProductReview[] · nullable |
page
|
integer |
pageSize
|
integer |
summary
|
ProductReviewSummary |
-
Retry-After— Seconds to wait before retrying.
Standard errors:
404
Errors
Examples
curl "https://api.erp.fluit.cloud/ecom/catalog/products/{idOrSlug}/reviews" \
-H "X-Tenant-Id: $FLUIT_TENANT_ID" \
-H "X-Channel: web"
{
"hasMore": true,
"items": [
{
"author": "string",
"date": "2026-06-11T09:24:13.418",
"id": "0f8b2c1e-4d3a-4b7e-9f10-2a6c5d8e1b44",
"isVerifiedPurchase": true,
"rating": 42,
"text": "string",
"title": "string"
}
],
"page": 1,
"pageSize": 50,
"summary": {
"averageRating": "299.00",
"distribution": [
42
],
"totalCount": 137
}
}
Base URL https://api.erp.fluit.cloud/ecom. The response example is generated from the schema: the shape is right, the values are made up.