example-data.com

product-reviews / #175

productId
Soft Gold Soap USD93.59
userId
Aylin Sanford @aylin.sanford
rating
5
title
Repellat sophismata abbas demitto cupiditate coniuratio.
body
Totus sustineo in causa pectus synagoga eaque universe arceo tandem.
isVerified
false
helpfulCount
188
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/175"
)
product_review = res.json()
{
  "id": 175,
  "productId": 36,
  "userId": 173,
  "rating": 5,
  "title": "Repellat sophismata abbas demitto cupiditate coniuratio.",
  "body": "Totus sustineo in causa pectus synagoga eaque universe arceo tandem.",
  "isVerified": false,
  "helpfulCount": 188,
  "createdAt": "2025-12-09T16:14:54.018Z",
  "updatedAt": "2026-01-04T00:20:46.334Z"
}
Draftbit