example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #734

Ustilo attonbitus abduco acidus currus acceptus caecus tum.

productId
Fresh Steel Pants USD82.34
userId
Berniece Medhurst @berniece_medhurst
rating
4.5
title
Ustilo attonbitus abduco acidus currus acceptus caecus tum.
body
Amoveo patior vilicus carpo necessitatibus coaegresco tenuis.
isVerified
false
helpfulCount
76
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 734,
  "productId": 160,
  "userId": 77,
  "rating": 4.5,
  "title": "Ustilo attonbitus abduco acidus currus acceptus caecus tum.",
  "body": "Amoveo patior vilicus carpo necessitatibus coaegresco tenuis.",
  "isVerified": false,
  "helpfulCount": 76,
  "createdAt": "2025-07-14T12:36:45.472Z",
  "updatedAt": "2026-04-14T22:58:21.731Z"
}