example-data.com

product-reviews / #184

productId
Licensed Concrete Bike USD17.10
userId
Oran Torphy @oran_torphy
rating
1
title
Arbor considero villa arca ciminatio.
body
Titulus considero utpote volup demens suppellex aegrotatio dolorum defero depopulo.
isVerified
false
helpfulCount
119
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/184"
)
product_review = res.json()
{
  "id": 184,
  "productId": 38,
  "userId": 189,
  "rating": 1,
  "title": "Arbor considero villa arca ciminatio.",
  "body": "Titulus considero utpote volup demens suppellex aegrotatio dolorum defero depopulo.",
  "isVerified": false,
  "helpfulCount": 119,
  "createdAt": "2024-10-10T12:21:19.472Z",
  "updatedAt": "2026-03-10T09:17:41.718Z"
}
Draftbit