product-reviews / #235
- productId
-
Bespoke Bamboo Hat USD259.99
- userId
-
Everett Yundt @everett_yundt11
- rating
- 5
- title
- Ager subvenio speciosus coadunatio tabella.
- body
- Subito consequatur vox enim comburo. Suppono adeptio tantillus solus astrum audeo conspergo.
- isVerified
- false
- helpfulCount
- 18
- createdAt
- updatedAt
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/235" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/235"
);
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/235"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/235"
)
product_review = res.json() {
"id": 235,
"productId": 48,
"userId": 44,
"rating": 5,
"title": "Ager subvenio speciosus coadunatio tabella.",
"body": "Subito consequatur vox enim comburo. Suppono adeptio tantillus solus astrum audeo conspergo.",
"isVerified": false,
"helpfulCount": 18,
"createdAt": "2024-06-11T03:39:34.506Z",
"updatedAt": "2026-04-27T16:36:48.204Z"
}