example-data.com

product-reviews / #201

productId
Oriental Rubber Shirt USD24.35
userId
Pinkie Denesik @pinkie_denesik32
rating
4
title
Nesciunt pel tubineus benevolentia.
body
Dicta tertius censura utroque cenaculum est atrox suggero suffoco.
isVerified
false
helpfulCount
159
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/201"
)
product_review = res.json()
{
  "id": 201,
  "productId": 42,
  "userId": 88,
  "rating": 4,
  "title": "Nesciunt pel tubineus benevolentia.",
  "body": "Dicta tertius censura utroque cenaculum est atrox suggero suffoco.",
  "isVerified": false,
  "helpfulCount": 159,
  "createdAt": "2025-03-28T15:23:55.577Z",
  "updatedAt": "2025-11-10T19:14:36.075Z"
}
Draftbit