example-data.com

product-reviews / #222

productId
Licensed Marble Car USD446.65
userId
Izaiah Rempel @izaiah_rempel
rating
2.5
title
Tunc sufficio voluptates quaerat desidero conforto cerno.
body
Apud deleo brevis volup cogo.
isVerified
false
helpfulCount
179
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/222"
)
product_review = res.json()
{
  "id": 222,
  "productId": 46,
  "userId": 31,
  "rating": 2.5,
  "title": "Tunc sufficio voluptates quaerat desidero conforto cerno.",
  "body": "Apud deleo brevis volup cogo.",
  "isVerified": false,
  "helpfulCount": 179,
  "createdAt": "2024-08-29T16:54:39.579Z",
  "updatedAt": "2026-03-07T22:43:29.089Z"
}
Draftbit