example-data.com

product-reviews / #179

productId
Frozen Bamboo Chips USD263.29
userId
Jermain Kshlerin @jermain_kshlerin51
rating
4.5
title
Adopto curvo confugo subvenio voro maxime.
body
Temeritas cernuus vacuus virgo.
isVerified
true
helpfulCount
102
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/179"
)
product_review = res.json()
{
  "id": 179,
  "productId": 37,
  "userId": 104,
  "rating": 4.5,
  "title": "Adopto curvo confugo subvenio voro maxime.",
  "body": "Temeritas cernuus vacuus virgo.",
  "isVerified": true,
  "helpfulCount": 102,
  "createdAt": "2024-09-16T21:48:09.741Z",
  "updatedAt": "2025-10-03T20:22:47.932Z"
}
Draftbit