example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #77

Vaco abutor vitium arceo terebro subseco dicta molestias.

productId
Small Cotton Towels USD404.09
userId
Myrl Pollich @myrl.pollich
rating
5
title
Vaco abutor vitium arceo terebro subseco dicta molestias.
body
Vitiosus sursum suggero sollicito deporto veritas consectetur sono.
isVerified
true
helpfulCount
27
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 77,
  "productId": 15,
  "userId": 90,
  "rating": 5,
  "title": "Vaco abutor vitium arceo terebro subseco dicta molestias.",
  "body": "Vitiosus sursum suggero sollicito deporto veritas consectetur sono.",
  "isVerified": true,
  "helpfulCount": 27,
  "createdAt": "2025-03-04T05:23:00.190Z",
  "updatedAt": "2026-01-13T02:29:39.886Z"
}