example-data.com

product-reviews / #124

productId
Fresh Gold Pants USD424.19
userId
Tabitha Ruecker @tabitha.ruecker
rating
4
title
Atqui theatrum quod claustrum.
body
Adulescens amaritudo arbor. Creator ver atqui.
isVerified
false
helpfulCount
120
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/124"
)
product_review = res.json()
{
  "id": 124,
  "productId": 24,
  "userId": 197,
  "rating": 4,
  "title": "Atqui theatrum quod claustrum.",
  "body": "Adulescens amaritudo arbor. Creator ver atqui.",
  "isVerified": false,
  "helpfulCount": 120,
  "createdAt": "2024-12-01T01:57:58.993Z",
  "updatedAt": "2026-05-12T21:14:11.319Z"
}
Draftbit