example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #335

Degusto iure ustulo victoria combibo vulnero cur.

productId
Unbranded Bronze Computer USD112.30
userId
Chyna Kozey @chyna_kozey80
rating
5
title
Degusto iure ustulo victoria combibo vulnero cur.
body
Admoneo cerno stips thesis pecus studio tot addo molestias spiculum. Vulticulus desino modi quo aestus coadunatio ullam antea audacia tremo.
isVerified
true
helpfulCount
29
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/product-reviews/335"
);
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/335"
);
const productReview = (await res.json()) as ProductReview;

Python example

import requests

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

Response

{
  "id": 335,
  "productId": 71,
  "userId": 140,
  "rating": 5,
  "title": "Degusto iure ustulo victoria combibo vulnero cur.",
  "body": "Admoneo cerno stips thesis pecus studio tot addo molestias spiculum. Vulticulus desino modi quo aestus coadunatio ullam antea audacia tremo.",
  "isVerified": true,
  "helpfulCount": 29,
  "createdAt": "2025-10-29T05:21:06.251Z",
  "updatedAt": "2026-03-09T09:11:46.547Z"
}