example-data.com

product-reviews / #68

productId
Handmade Plastic Fish USD191.61
userId
Ressie Howell-Hodkiewicz @ressie_howell-hodkiewicz35
rating
4
title
Tot decerno nostrum voluptate atqui careo.
body
Consectetur coniuratio deleo ventito comprehendo demo repellat contra. Eos neque traho aspicio acquiro terreo capto paens.
isVerified
true
helpfulCount
73
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/68"
)
product_review = res.json()
{
  "id": 68,
  "productId": 13,
  "userId": 214,
  "rating": 4,
  "title": "Tot decerno nostrum voluptate atqui careo.",
  "body": "Consectetur coniuratio deleo ventito comprehendo demo repellat contra. Eos neque traho aspicio acquiro terreo capto paens.",
  "isVerified": true,
  "helpfulCount": 73,
  "createdAt": "2024-07-19T20:39:49.151Z",
  "updatedAt": "2025-04-10T20:51:15.851Z"
}
Draftbit