product-reviews / #96
- productId
-
Refined Plastic Chair USD156.63
- userId
-
Jewell Olson @jewell_olson2
- rating
- 4.5
- title
- Nisi pax fuga aegre decens aspernatur arcus adficio.
- body
- Tripudio laborum truculenter quibusdam aufero ocer agnosco voveo voluptates. Iure celo triduana totidem vester combibo eligendi. Pecco impedit apud solutio dolorum pecto volubilis summa.
- isVerified
- false
- helpfulCount
- 15
- createdAt
- updatedAt
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/96"
);
const productReview = await res.json();import type { ProductReview } from "https://example-data.com/types/product-reviews.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/product-reviews/96"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/96"
)
product_review = res.json() {
"id": 96,
"productId": 19,
"userId": 68,
"rating": 4.5,
"title": "Nisi pax fuga aegre decens aspernatur arcus adficio.",
"body": "Tripudio laborum truculenter quibusdam aufero ocer agnosco voveo voluptates. Iure celo triduana totidem vester combibo eligendi. Pecco impedit apud solutio dolorum pecto volubilis summa.",
"isVerified": false,
"helpfulCount": 15,
"createdAt": "2026-01-27T14:04:23.124Z",
"updatedAt": "2026-05-01T23:56:29.661Z"
}