example-data.com

product-reviews / #39

productId
Handcrafted Plastic Chair USD309.65
userId
Roosevelt Ullrich @roosevelt.ullrich75
rating
4
title
Illum vacuus atrox veniam barba.
body
Desolo caput facilis suppellex.
isVerified
true
helpfulCount
170
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/39"
)
product_review = res.json()
{
  "id": 39,
  "productId": 7,
  "userId": 237,
  "rating": 4,
  "title": "Illum vacuus atrox veniam barba.",
  "body": "Desolo caput facilis suppellex.",
  "isVerified": true,
  "helpfulCount": 170,
  "createdAt": "2026-02-19T03:11:34.710Z",
  "updatedAt": "2026-02-28T21:07:06.717Z"
}
Draftbit