example-data.com

product-reviews / #205

productId
Oriental Rubber Shirt USD24.35
userId
Roma Durgan @roma.durgan
rating
5
title
Somnus color textor terga rem utor adiuvo allatus.
body
Artificiose animus candidus amo deinde nam vomer asperiores. Ipsam caecus considero esse.
isVerified
true
helpfulCount
156
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/205"
)
product_review = res.json()
{
  "id": 205,
  "productId": 42,
  "userId": 215,
  "rating": 5,
  "title": "Somnus color textor terga rem utor adiuvo allatus.",
  "body": "Artificiose animus candidus amo deinde nam vomer asperiores. Ipsam caecus considero esse.",
  "isVerified": true,
  "helpfulCount": 156,
  "createdAt": "2025-12-28T03:20:21.385Z",
  "updatedAt": "2026-03-15T17:44:37.586Z"
}
Draftbit