product-reviews / #127
- productId
-
Fresh Gold Pants USD424.19
- userId
-
Porter Dooley @porter.dooley
- rating
- 4.5
- title
- Theologus acervus aggredior bestia.
- body
- Optio terror textor adicio volutabrum vitiosus.
- isVerified
- false
- helpfulCount
- 171
- createdAt
- updatedAt
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/127" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/127"
);
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/127"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/127"
)
product_review = res.json() {
"id": 127,
"productId": 24,
"userId": 135,
"rating": 4.5,
"title": "Theologus acervus aggredior bestia.",
"body": "Optio terror textor adicio volutabrum vitiosus.",
"isVerified": false,
"helpfulCount": 171,
"createdAt": "2026-01-19T18:44:47.333Z",
"updatedAt": "2026-01-31T19:11:31.843Z"
}