example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #724

Denego aegrotatio spes.

productId
Small Metal Soap USD363.30
userId
D'angelo Kling @dangelo_kling6
rating
3
title
Denego aegrotatio spes.
body
Usque curvo cubitum uter voluptatum abutor iusto quasi sto.
isVerified
true
helpfulCount
101
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 724,
  "productId": 157,
  "userId": 188,
  "rating": 3,
  "title": "Denego aegrotatio spes.",
  "body": "Usque curvo cubitum uter voluptatum abutor iusto quasi sto.",
  "isVerified": true,
  "helpfulCount": 101,
  "createdAt": "2025-11-29T10:30:28.605Z",
  "updatedAt": "2026-03-08T09:26:40.806Z"
}