example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #254

Unde suffoco tyrannus soluta ante confero tergeo.

productId
Practical Rubber Car USD180.89
userId
Claudie Hagenes @claudie_hagenes
rating
5
title
Unde suffoco tyrannus soluta ante confero tergeo.
body
Viduo amita volubilis delego tamen alo cresco antiquus commodi. Incidunt conitor suspendo viriliter bene conforto dolore universe.
isVerified
true
helpfulCount
196
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 254,
  "productId": 52,
  "userId": 232,
  "rating": 5,
  "title": "Unde suffoco tyrannus soluta ante confero tergeo.",
  "body": "Viduo amita volubilis delego tamen alo cresco antiquus commodi. Incidunt conitor suspendo viriliter bene conforto dolore universe.",
  "isVerified": true,
  "helpfulCount": 196,
  "createdAt": "2026-04-08T19:17:41.259Z",
  "updatedAt": "2026-05-11T23:54:22.628Z"
}