product-reviews / #14
- productId
-
Soft Bronze Hat USD23.15
- userId
-
Carley Gleichner @carley.gleichner
- rating
- 5
- title
- Sum solitudo uterque sulum.
- body
- Adeptio aspicio ut valde decumbo torqueo vacuus.
- isVerified
- true
- helpfulCount
- 196
- createdAt
- updatedAt
Component variants
Small
product-reviews/14 Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/14"
);
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/14"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/14"
)
product_review = res.json() {
"id": 14,
"productId": 3,
"userId": 142,
"rating": 5,
"title": "Sum solitudo uterque sulum.",
"body": "Adeptio aspicio ut valde decumbo torqueo vacuus.",
"isVerified": true,
"helpfulCount": 196,
"createdAt": "2026-02-10T21:17:40.193Z",
"updatedAt": "2026-04-21T15:30:14.781Z"
}