example-data.com

product-reviews / #110

productId
Fantastic Marble Chicken USD225.53
userId
Cassidy Christiansen @cassidy_christiansen38
rating
1.5
title
Confido dedecor validus.
body
Alius amo conor totus.
isVerified
false
helpfulCount
3
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/110"
)
product_review = res.json()
{
  "id": 110,
  "productId": 21,
  "userId": 33,
  "rating": 1.5,
  "title": "Confido dedecor validus.",
  "body": "Alius amo conor totus.",
  "isVerified": false,
  "helpfulCount": 3,
  "createdAt": "2026-02-08T10:00:40.476Z",
  "updatedAt": "2026-05-01T18:42:16.863Z"
}
Draftbit