example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #581

Tutamen supra patrocinor sursum comedo odio.

productId
Fresh Plastic Computer USD143.69
userId
Lilla Koss @lilla.koss
rating
5
title
Tutamen supra patrocinor sursum comedo odio.
body
Vero tamdiu ante toties admoneo patrocinor nesciunt apud reiciendis supellex.
isVerified
true
helpfulCount
21
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 581,
  "productId": 128,
  "userId": 59,
  "rating": 5,
  "title": "Tutamen supra patrocinor sursum comedo odio.",
  "body": "Vero tamdiu ante toties admoneo patrocinor nesciunt apud reiciendis supellex.",
  "isVerified": true,
  "helpfulCount": 21,
  "createdAt": "2024-07-03T02:01:38.063Z",
  "updatedAt": "2025-09-21T08:24:40.544Z"
}