example-data.com

product-reviews / #19

productId
Refined Plastic Bacon USD160.19
userId
Charlene Roberts @charlene_roberts
rating
2
title
Dolore confido tepesco theologus conitor.
body
Curo crastinus tumultus volo adinventitias capillus tergiversatio voco.
isVerified
true
helpfulCount
183
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/19"
)
product_review = res.json()
{
  "id": 19,
  "productId": 4,
  "userId": 1,
  "rating": 2,
  "title": "Dolore confido tepesco theologus conitor.",
  "body": "Curo crastinus tumultus volo adinventitias capillus tergiversatio voco.",
  "isVerified": true,
  "helpfulCount": 183,
  "createdAt": "2024-06-04T23:54:13.088Z",
  "updatedAt": "2026-01-17T21:29:20.548Z"
}
Draftbit