Skip to main content
GET
/
products
/
reviews
[
  {
    "id": 567,
    "date_created": "2024-09-15T14:30:22",
    "date_created_gmt": "2024-09-15T18:30:22",
    "product_id": 145,
    "status": "approved",
    "reviewer": "Sarah Johnson",
    "reviewer_email": "sarah.j@example.com",
    "review": "These headphones are absolutely fantastic! The sound quality is crystal clear and the noise cancellation works incredibly well. Battery life is even better than advertised. Highly recommend for anyone looking for premium wireless headphones.",
    "rating": 5,
    "verified": true
  },
  {
    "id": 589,
    "date_created": "2024-09-18T09:15:45",
    "date_created_gmt": "2024-09-18T13:15:45",
    "product_id": 145,
    "status": "approved",
    "reviewer": "Mike Chen",
    "reviewer_email": "m.chen@example.com",
    "review": "Great headphones overall. Sound quality is excellent and very comfortable to wear for long periods. Only minor issue is they're a bit bulky for travel, but that's expected with over-ear headphones. Still giving 5 stars!",
    "rating": 5,
    "verified": true
  },
  {
    "id": 612,
    "date_created": "2024-09-22T16:42:10",
    "date_created_gmt": "2024-09-22T20:42:10",
    "product_id": 278,
    "status": "approved",
    "reviewer": "Emma Wilson",
    "reviewer_email": "emma.w@example.com",
    "review": "Love this t-shirt! The cotton is so soft and the fit is perfect. Washes well and doesn't shrink. I've already ordered it in three more colors.",
    "rating": 5,
    "verified": true
  }
]

Query Parameters

page
integer
default:1

Current page of the collection.

per_page
integer
default:10

Maximum number of items to return per page.

Limit results to those matching a search string.

product
integer[]

Limit results to reviews for specific products.

Response

Product reviews retrieved successfully.

id
integer

Unique identifier for the resource.

date_created
string<date-time>

The date the review was created.

date_created_gmt
string<date-time>

The date the review was created, as GMT.

product_id
integer

Unique identifier for the product that the review belongs to.

status
string

Status of the review.

reviewer
string

Name of the reviewer.

reviewer_email
string

Email of the reviewer.

review
string

The content of the review.

rating
integer

Review rating (0 to 5).

verified
boolean

Shows if the reviewer bought the product or not.

I