example-data.com

product-reviews / #171

productId
Small Gold Tuna USD147.89
userId
Lawrence Rogahn @lawrence_rogahn33
rating
5
title
Saepe vigor adeptio tres apud.
body
Deleo adhaero aestus tempus bestia thema varietas. Dapifer officiis tum et capto labore cetera abutor amplus sublime.
isVerified
false
helpfulCount
120
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/171"
)
product_review = res.json()
{
  "id": 171,
  "productId": 35,
  "userId": 245,
  "rating": 5,
  "title": "Saepe vigor adeptio tres apud.",
  "body": "Deleo adhaero aestus tempus bestia thema varietas. Dapifer officiis tum et capto labore cetera abutor amplus sublime.",
  "isVerified": false,
  "helpfulCount": 120,
  "createdAt": "2025-12-07T00:57:06.517Z",
  "updatedAt": "2026-01-16T07:18:45.050Z"
}
Draftbit