product-reviews / #78
- productId
-
Small Cotton Towels USD404.09
- userId
-
Mable West @mable_west
- rating
- 2
- title
- Abbas debilito catena accusamus aeger sollicito tempus utpote.
- body
- Beatae absens patria.
- isVerified
- true
- helpfulCount
- 96
- createdAt
- updatedAt
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/78"
);
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/78"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/78"
)
product_review = res.json() {
"id": 78,
"productId": 15,
"userId": 86,
"rating": 2,
"title": "Abbas debilito catena accusamus aeger sollicito tempus utpote.",
"body": "Beatae absens patria.",
"isVerified": true,
"helpfulCount": 96,
"createdAt": "2025-02-10T18:19:29.673Z",
"updatedAt": "2025-03-02T14:43:31.903Z"
}