Skip to content

GET/users/{id}/reviews

List user's reviews

Retrieve user's reviews. Same filtering, sorting, and pagination as `/reviews`.

Parameters 13

NameTypeDescription
_pagequery · integerPage number (1-based)
_limitquery · integerItems per page
_startquery · integerSlice start index (alternative to page-based)

ReturnsReview

Bearer token required

Response examples

200Array of reviews

application/json example derived from schema

[
  {
    "id": 1,
    "productId": 1,
    "userId": 1,
    "rating": 4,
    "title": "Works as advertised",
    "body": "Great article! Really helped me understand the concept better.",
    "isVerified": true,
    "helpful": 1,
    "createdAt": "2025-08-29T18:25:55.906Z"
  }
]
404404 — resource not found

application/json

{
  "error": {
    "status": 404,
    "message": "users #999 not found"
  }
}

Released under the MIT License.