product-reviews / #167
- productId
-
Sleek Plastic Shoes USD60.49
- userId
-
Orrin Grant @orrin.grant42
- rating
- 4
- title
- Dolorem sed attollo.
- body
- Subito terror audacia vindico strues attollo thema.
- isVerified
- true
- helpfulCount
- 115
- createdAt
- updatedAt
Component variants
Medium
Dolorem sed attollo.
#167
Small
product-reviews/167 Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/167" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/167"
);
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/167"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/167"
)
product_review = res.json() {
"id": 167,
"productId": 33,
"userId": 152,
"rating": 4,
"title": "Dolorem sed attollo.",
"body": "Subito terror audacia vindico strues attollo thema.",
"isVerified": true,
"helpfulCount": 115,
"createdAt": "2026-01-07T12:09:24.126Z",
"updatedAt": "2026-04-18T15:42:49.423Z"
}