---
title: "Get a product review"
method: GET
path: "/products/reviews/{id}"
tags: ["product-reviews"]
---

# Get a product review

`GET /products/reviews/{id}`

Returns a single product review.

## Path parameters

- `id` integer, required

## Query parameters

- `context` 'view' | 'embed'

## Response `200`

Product review data.

- ProductReview
  - `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.

## Other responses

- `404` — Product review not found.

---

[API](https://skmtc.net/cocartapi/apis/cocart-jwt-authentication.md) · [All operations](https://skmtc.net/cocartapi/apis/cocart-jwt-authentication/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cocartapi/cocart-jwt-authentication/revisions/2031b047ca5f/schema)
