Get Review
GET
/store/reviews/{productId}
const url = 'http://localhost:9000/store/reviews/example?limit=20&offset=0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:9000/store/reviews/example?limit=20&offset=0'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” productId
required
string
Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
reviews
Array<object>
object
id
string
status
string
rating
integer
title
string
body
string
author_name
string
product_id
string
customer_id
string
created_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{ "reviews": [ { "id": "example", "status": "example", "rating": 1, "title": "example", "body": "example", "author_name": "example", "product_id": "example", "customer_id": "example", "created_at": "2026-04-15T12:00:00Z" } ], "count": 1, "limit": 1, "offset": 1}