product-reviews / #198
- productId
-
Licensed Bamboo Bacon USD247.99
- userId
-
Michaela Feeney @michaela_feeney46
- rating
- 4.5
- title
- Doloremque crepusculum tenus conturbo.
- body
- Fuga timidus defaeco thema stella saepe accusantium velut verecundia non.
- isVerified
- false
- helpfulCount
- 5
- createdAt
- updatedAt
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/198" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/198"
);
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/198"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/198"
)
product_review = res.json() {
"id": 198,
"productId": 41,
"userId": 87,
"rating": 4.5,
"title": "Doloremque crepusculum tenus conturbo.",
"body": "Fuga timidus defaeco thema stella saepe accusantium velut verecundia non.",
"isVerified": false,
"helpfulCount": 5,
"createdAt": "2025-08-27T03:55:00.645Z",
"updatedAt": "2025-11-04T06:42:20.758Z"
}