example-data.com

product-reviews / #22

productId
Refined Plastic Bacon USD160.19
userId
Marlin Goldner @marlin_goldner6
rating
3.5
title
Praesentium sufficio sto id strenuus aduro adsuesco sol.
body
Curatio pel aliquam.
isVerified
true
helpfulCount
75
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/22"
)
product_review = res.json()
{
  "id": 22,
  "productId": 4,
  "userId": 160,
  "rating": 3.5,
  "title": "Praesentium sufficio sto id strenuus aduro adsuesco sol.",
  "body": "Curatio pel aliquam.",
  "isVerified": true,
  "helpfulCount": 75,
  "createdAt": "2026-04-09T03:09:59.629Z",
  "updatedAt": "2026-04-27T00:53:18.080Z"
}
Draftbit