product-reviews / #146
- productId
-
Tasty Steel Chair USD486.65
- userId
-
Green Kozey @green_kozey22
- rating
- 2
- title
- Arcesso totus atavus titulus vitiosus.
- body
- Debeo pectus aegrus canto urbs copia textilis qui demo. Tabula ocer deduco abduco ait ara a sint spectaculum arceo.
- isVerified
- false
- helpfulCount
- 75
- createdAt
- updatedAt
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/146" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/146"
);
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/146"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/146"
)
product_review = res.json() {
"id": 146,
"productId": 30,
"userId": 49,
"rating": 2,
"title": "Arcesso totus atavus titulus vitiosus.",
"body": "Debeo pectus aegrus canto urbs copia textilis qui demo. Tabula ocer deduco abduco ait ara a sint spectaculum arceo.",
"isVerified": false,
"helpfulCount": 75,
"createdAt": "2025-09-02T11:49:21.626Z",
"updatedAt": "2026-03-07T13:49:36.081Z"
}