Get Product Review
Retrieve detailed information for a specific product review.
Endpoint
GET /api/shop/products/{productId}/reviews/{reviewId}Request Headers
| Header | Required | Description |
|---|---|---|
Content-Type | Yes | application/json |
X-STOREFRONT-KEY | Yes | Your storefront API key |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
productId | integer | Yes | Product ID |
reviewId | integer | Yes | Review ID |
Response Fields (200 OK)
| Field | Type | Description |
|---|---|---|
id | integer | Review ID |
productId | integer | Product ID reviewed |
title | string | Review title |
comment | string | Full review text |
rating | integer | Rating (1-5 stars) |
authorName | string | Reviewer name |
authorEmail | string | Reviewer email |
customerId | integer | Customer ID (if customer review) |
status | string | Review status (approved, pending, rejected) |
helpful | integer | Number of helpful votes |
unhelpful | integer | Number of unhelpful votes |
createdAt | string | Creation date |
updatedAt | string | Last update date |
Use Cases
- Display individual review details
- Show review with full context
- Build review reply/discussion features
- Load specific review for editing/flagging
- Create featured review sections

