example-data.com

product-reviews / #156

productId
Soft Wooden Towels USD282.85
userId
Jesse Kiehn @jesse_kiehn92
rating
4.5
title
Iure crebro cena videlicet vulariter annus truculenter.
body
Curatio alioqui deleo deficio distinctio.
isVerified
true
helpfulCount
191
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/156"
)
product_review = res.json()
{
  "id": 156,
  "productId": 32,
  "userId": 76,
  "rating": 4.5,
  "title": "Iure crebro cena videlicet vulariter annus truculenter.",
  "body": "Curatio alioqui deleo deficio distinctio.",
  "isVerified": true,
  "helpfulCount": 191,
  "createdAt": "2024-09-27T08:58:28.977Z",
  "updatedAt": "2024-10-25T09:43:52.580Z"
}
Draftbit