product-reviews / #112
- productId
-
Sleek Rubber Mouse USD238.05
- userId
-
Nikko Kuhlman @nikko_kuhlman
- rating
- 4
- title
- Esse catena accusator succurro.
- body
- Corona arbor tabgo cubo suggero tabella inflammatio pel stella. Concedo vomer amet.
- isVerified
- false
- helpfulCount
- 75
- createdAt
- updatedAt
Component variants
Small
product-reviews/112 Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/112" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/112"
);
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/112"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/112"
)
product_review = res.json() {
"id": 112,
"productId": 22,
"userId": 122,
"rating": 4,
"title": "Esse catena accusator succurro.",
"body": "Corona arbor tabgo cubo suggero tabella inflammatio pel stella. Concedo vomer amet.",
"isVerified": false,
"helpfulCount": 75,
"createdAt": "2025-06-10T21:33:08.255Z",
"updatedAt": "2025-08-24T15:43:58.767Z"
}