product-reviews / #80
- productId
-
Small Cotton Towels USD404.09
- userId
-
Malvina Ortiz @malvina_ortiz
- rating
- 1
- title
- Modi temperantia studio aetas traho.
- body
- Tergum adulescens vero debilito a.
- isVerified
- true
- helpfulCount
- 1
- createdAt
- updatedAt
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/80"
);
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/80"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/80"
)
product_review = res.json() {
"id": 80,
"productId": 15,
"userId": 234,
"rating": 1,
"title": "Modi temperantia studio aetas traho.",
"body": "Tergum adulescens vero debilito a.",
"isVerified": true,
"helpfulCount": 1,
"createdAt": "2025-11-23T21:16:27.290Z",
"updatedAt": "2026-03-02T13:08:42.849Z"
}