example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #918

Cruciamentum stella maxime tabula.

productId
Licensed Bronze Computer USD455.25
userId
Beau Stiedemann @beau.stiedemann
rating
5
title
Cruciamentum stella maxime tabula.
body
Tergiversatio reprehenderit aggero stultus defleo tactus pauper timidus studio voluntarius. Color tenetur terga alioqui talis. Taceo cupio valetudo adimpleo titulus.
isVerified
true
helpfulCount
183
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 918,
  "productId": 199,
  "userId": 64,
  "rating": 5,
  "title": "Cruciamentum stella maxime tabula.",
  "body": "Tergiversatio reprehenderit aggero stultus defleo tactus pauper timidus studio voluntarius. Color tenetur terga alioqui talis. Taceo cupio valetudo adimpleo titulus.",
  "isVerified": true,
  "helpfulCount": 183,
  "createdAt": "2025-01-04T02:50:23.073Z",
  "updatedAt": "2025-05-20T18:11:23.793Z"
}