product-reviews / #157
- productId
-
Soft Wooden Towels USD282.85
- userId
-
Clementine Nicolas @clementine_nicolas
- rating
- 4.5
- title
- Admitto ventosus ubi ait caput talus.
- body
- Confugo appositus vehemens combibo.
- isVerified
- true
- helpfulCount
- 199
- createdAt
- updatedAt
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/157" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/157"
);
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/157"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/157"
)
product_review = res.json() {
"id": 157,
"productId": 32,
"userId": 164,
"rating": 4.5,
"title": "Admitto ventosus ubi ait caput talus.",
"body": "Confugo appositus vehemens combibo.",
"isVerified": true,
"helpfulCount": 199,
"createdAt": "2025-05-01T03:04:31.677Z",
"updatedAt": "2026-05-04T13:11:21.184Z"
}