product-reviews / #99
- productId
-
Refined Plastic Chair USD156.63
- userId
-
Talon Turner @talon.turner59
- rating
- 3
- title
- Synagoga ex vero beatae caritas auctor derideo.
- body
- Defaeco confugo stabilis. Venio cresco quaerat aduro thorax deporto ustilo talus.
- isVerified
- true
- helpfulCount
- 14
- createdAt
- updatedAt
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/99" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/99"
);
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/99"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/99"
)
product_review = res.json() {
"id": 99,
"productId": 19,
"userId": 166,
"rating": 3,
"title": "Synagoga ex vero beatae caritas auctor derideo.",
"body": "Defaeco confugo stabilis. Venio cresco quaerat aduro thorax deporto ustilo talus.",
"isVerified": true,
"helpfulCount": 14,
"createdAt": "2025-02-19T14:12:52.254Z",
"updatedAt": "2026-01-06T16:32:33.574Z"
}