example-data.com

product-reviews / #86

productId
Electronic Cotton Towels USD405.69
userId
Darian Schaden @darian_schaden36
rating
4.5
title
Amiculum demergo subseco vorago carpo auditor.
body
Quam cohaero stipes avarus clamo brevis suffoco. Trans fuga eos. Capillus tertius creptio angelus.
isVerified
false
helpfulCount
118
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/product-reviews/86" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/product-reviews/86"
);
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/86"
);
const productReview = (await res.json()) as ProductReview;
import requests

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/86"
)
product_review = res.json()
{
  "id": 86,
  "productId": 17,
  "userId": 53,
  "rating": 4.5,
  "title": "Amiculum demergo subseco vorago carpo auditor.",
  "body": "Quam cohaero stipes avarus clamo brevis suffoco. Trans fuga eos. Capillus tertius creptio angelus.",
  "isVerified": false,
  "helpfulCount": 118,
  "createdAt": "2025-11-15T19:44:30.470Z",
  "updatedAt": "2025-12-07T15:42:24.157Z"
}
Draftbit