Skip to content

List Reviews

GET
/admin/reviews
curl --request GET \
--url 'http://localhost:9000/admin/reviews?limit=20&offset=0&status=pending'
limit
integer
default: 20
offset
integer
0
order
string
fields
string
q
string
status
string
Allowed values: pending approved rejected
product_id
string
customer_id
string

OK

Media type application/json
object
reviews
Array<object>
object
id
string
status
string
rating
integer
title
string
author_name
string
author_email
string
product_id
string
order_id
string
customer_id
string
created_at
string format: date-time
updated_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{
"reviews": [
{
"id": "example",
"status": "example",
"rating": 1,
"title": "example",
"author_name": "example",
"author_email": "example",
"product_id": "example",
"order_id": "example",
"customer_id": "example",
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z"
}
],
"count": 1,
"limit": 1,
"offset": 1
}