example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #394

Unde abutor terebro auxilium pecus adicio adipisci vulgo.

productId
Generic Wooden Cheese USD155.84
userId
Sandrine Osinski @sandrine.osinski
rating
2.5
title
Unde abutor terebro auxilium pecus adicio adipisci vulgo.
body
Succurro amplexus arx soleo eligendi vinitor theca traho. Theca adulescens campana ambitus trepide vitae aeger error tripudio verumtamen.
isVerified
false
helpfulCount
73
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/product-reviews/394" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/product-reviews/394"
);
const productReview = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/product-reviews.d.ts https://example-data.com/types/product-reviews.d.ts
import type { ProductReview } from "./types/product-reviews";

const res = await fetch(
  "https://example-data.com/api/v1/product-reviews/394"
);
const productReview = (await res.json()) as ProductReview;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/product-reviews/394"
)
product_review = res.json()

Response

{
  "id": 394,
  "productId": 85,
  "userId": 157,
  "rating": 2.5,
  "title": "Unde abutor terebro auxilium pecus adicio adipisci vulgo.",
  "body": "Succurro amplexus arx soleo eligendi vinitor theca traho. Theca adulescens campana ambitus trepide vitae aeger error tripudio verumtamen.",
  "isVerified": false,
  "helpfulCount": 73,
  "createdAt": "2026-04-11T05:57:29.867Z",
  "updatedAt": "2026-04-14T09:02:26.693Z"
}