example-data.com

product-reviews / #128

productId
Fresh Gold Pants USD424.19
userId
Rupert Lebsack @rupert.lebsack
rating
1.5
title
Debilito tametsi ratione peccatus.
body
Auxilium ars audacia desparatus theatrum aer.
isVerified
true
helpfulCount
196
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/128"
)
product_review = res.json()
{
  "id": 128,
  "productId": 24,
  "userId": 249,
  "rating": 1.5,
  "title": "Debilito tametsi ratione peccatus.",
  "body": "Auxilium ars audacia desparatus theatrum aer.",
  "isVerified": true,
  "helpfulCount": 196,
  "createdAt": "2025-12-23T21:23:07.117Z",
  "updatedAt": "2026-01-21T18:54:07.249Z"
}
Draftbit