product-reviews / #61
- productId
-
Incredible Concrete Ball USD330.60
- userId
-
Oran Torphy @oran_torphy
- rating
- 4.5
- title
- Terra aufero comprehendo.
- body
- Depono desolo rerum.
- isVerified
- true
- helpfulCount
- 91
- createdAt
- updatedAt
Component variants
Small
product-reviews/61 Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/61"
);
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/61"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/61"
)
product_review = res.json() {
"id": 61,
"productId": 12,
"userId": 189,
"rating": 4.5,
"title": "Terra aufero comprehendo.",
"body": "Depono desolo rerum.",
"isVerified": true,
"helpfulCount": 91,
"createdAt": "2024-06-25T10:27:17.731Z",
"updatedAt": "2026-03-17T22:05:21.427Z"
}