example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #714

Adulatio ullam admitto cotidie.

productId
Fresh Bronze Table USD237.55
userId
Lavonne Schmidt @lavonne.schmidt95
rating
2.5
title
Adulatio ullam admitto cotidie.
body
Assentator usus bardus teres. Laborum textor caritas basium cinis bis textilis.
isVerified
true
helpfulCount
101
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 714,
  "productId": 156,
  "userId": 192,
  "rating": 2.5,
  "title": "Adulatio ullam admitto cotidie.",
  "body": "Assentator usus bardus teres. Laborum textor caritas basium cinis bis textilis.",
  "isVerified": true,
  "helpfulCount": 101,
  "createdAt": "2026-03-17T14:47:46.199Z",
  "updatedAt": "2026-04-05T00:21:27.636Z"
}