List comments
GET/openapi/2026-07/comments/list
Retrieve a list of comments for a specific product or across multiple products, based on various filters.
Request
Query Parameters
Cursor for pagination
Limit per page
Product's ID to filter comments
Filters comments created at or after this date. Format: YYYY-MM-DDTHH:mm:ssZ
Filters comments created at or before this date. Format: YYYY-MM-DDTHH:mm:ssZ
Filters comments updated at or after this date. Format: YYYY-MM-DDTHH:mm:ssZ
Filters comments updated at or before this date. Format: YYYY-MM-DDTHH:mm:ssZ
Specify the sort field. e.g.star or created_at
Specify the sort direction. asc or desc
Comment status. 1 for published, 0 for unpublished
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
comments object[]
List of comments
Comment ID
ID of the store where the comment was created
Name of the user who posted the comment
Email address of the user (if provided)
Rating provided by the user
Number of likes for the comment
Content of the comment
List of image URLs attached to the comment
Status of the comment: 1: published, 0: unpublished
Type of the comment
ID of the product associated with the comment
Timestamp when the comment was created, ISO-8601 format:YYYY-MM-DD HH:mm:ss
Timestamp when the comment was last updated, ISO-8601 format
Country code where the comment was created from
Indicates if the comment is featured (0: No, 1: Yes)
Indicates if the comment is verified (0: No, 1: Yes)
ID of the client who created the comment (if applicable)
Indicates if the comment was posted anonymously (0: No, 1: Yes)
Whether the product is published
The cursor for the next page of results
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"comments": [
{
"id": 0,
"store_id": 0,
"user_name": "string",
"email": "string",
"star": "string",
"like": 0,
"content": "string",
"images": [
"string"
],
"status": 0,
"type": 0,
"product_id": "string",
"created_at": "string",
"updated_at": "string",
"country": "string",
"is_featured": 0,
"is_verified": 0,
"client_id": "string",
"anonymous": 0,
"product_published": 0
}
],
"cursor": "string",
"has_more": true
}
}