product-reviews / #168
- productId
-
Sleek Plastic Shoes USD60.49
- userId
-
Porter Dooley @porter.dooley
- rating
- 4
- title
- Adipisci totidem debitis enim verbera sumo credo tabula.
- body
- Vitium suscipit congregatio suppono.
- isVerified
- true
- helpfulCount
- 114
- createdAt
- updatedAt
Component variants
Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/168" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/168"
);
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/168"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/168"
)
product_review = res.json() {
"id": 168,
"productId": 33,
"userId": 135,
"rating": 4,
"title": "Adipisci totidem debitis enim verbera sumo credo tabula.",
"body": "Vitium suscipit congregatio suppono.",
"isVerified": true,
"helpfulCount": 114,
"createdAt": "2024-08-03T21:17:39.092Z",
"updatedAt": "2025-05-03T17:42:52.225Z"
}