product-reviews / #225
- productId
-
Tasty Metal Chips USD330.09
- userId
-
Lavonne Schmidt @lavonne.schmidt95
- rating
- 4
- title
- Trepide damno claro adficio hic.
- body
- Provident dapifer suggero celer utilis ventito.
- isVerified
- false
- helpfulCount
- 56
- createdAt
- updatedAt
Component variants
Small
product-reviews/225 Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/225" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/225"
);
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/225"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/225"
)
product_review = res.json() {
"id": 225,
"productId": 47,
"userId": 192,
"rating": 4,
"title": "Trepide damno claro adficio hic.",
"body": "Provident dapifer suggero celer utilis ventito.",
"isVerified": false,
"helpfulCount": 56,
"createdAt": "2025-07-08T06:06:43.606Z",
"updatedAt": "2025-08-28T04:15:16.762Z"
}