product-reviews / #58
- productId
-
Fantastic Concrete Tuna USD452.00
- userId
-
Simeon Robel @simeon_robel12
- rating
- 2.5
- title
- Cultura trucido cogito.
- body
- Aro spectaculum pel tergo pel eveniet aveho. Coepi adnuo nihil veritas. Trepide pax suppono tabesco suus canonicus decimus.
- isVerified
- false
- helpfulCount
- 151
- createdAt
- updatedAt
Component variants
Medium
Cultura trucido cogito.
#58
Small
product-reviews/58 Related
curl -sS \
"https://example-data.com/api/v1/product-reviews/58" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/product-reviews/58"
);
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/58"
);
const productReview = (await res.json()) as ProductReview;import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/58"
)
product_review = res.json() {
"id": 58,
"productId": 11,
"userId": 55,
"rating": 2.5,
"title": "Cultura trucido cogito.",
"body": "Aro spectaculum pel tergo pel eveniet aveho. Coepi adnuo nihil veritas. Trepide pax suppono tabesco suus canonicus decimus.",
"isVerified": false,
"helpfulCount": 151,
"createdAt": "2024-07-16T17:11:30.656Z",
"updatedAt": "2025-07-23T15:41:45.313Z"
}