example-data.com

product-reviews / #204

productId
Oriental Rubber Shirt USD24.35
userId
Sonia Nolan @sonia_nolan
rating
3
title
Tribuo abutor socius.
body
Valetudo bestia vorax curo tabula tot ocer.
isVerified
true
helpfulCount
197
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/204"
)
product_review = res.json()
{
  "id": 204,
  "productId": 42,
  "userId": 208,
  "rating": 3,
  "title": "Tribuo abutor socius.",
  "body": "Valetudo bestia vorax curo tabula tot ocer.",
  "isVerified": true,
  "helpfulCount": 197,
  "createdAt": "2025-02-04T04:00:16.348Z",
  "updatedAt": "2026-05-12T16:44:25.143Z"
}
Draftbit