example-data.com

product-reviews / #15

productId
Soft Bronze Hat USD23.15
userId
Porter Dooley @porter.dooley
rating
5
title
Suggero verus thesis capio pel.
body
Sulum aperiam vix crebro. Atqui supellex veritatis asperiores venustas.
isVerified
true
helpfulCount
0
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/15"
)
product_review = res.json()
{
  "id": 15,
  "productId": 3,
  "userId": 135,
  "rating": 5,
  "title": "Suggero verus thesis capio pel.",
  "body": "Sulum aperiam vix crebro. Atqui supellex veritatis asperiores venustas.",
  "isVerified": true,
  "helpfulCount": 0,
  "createdAt": "2024-09-06T01:01:57.057Z",
  "updatedAt": "2025-04-27T21:35:22.330Z"
}
Draftbit