example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #312

Cinis magnam cenaculum varius adaugeo xiphias.

productId
Recycled Granite Mouse USD131.35
userId
Lenny Howe @lenny.howe
rating
3
title
Cinis magnam cenaculum varius adaugeo xiphias.
body
Arbitro versus advoco vitium amor quos.
isVerified
false
helpfulCount
176
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 312,
  "productId": 66,
  "userId": 37,
  "rating": 3,
  "title": "Cinis magnam cenaculum varius adaugeo xiphias.",
  "body": "Arbitro versus advoco vitium amor quos.",
  "isVerified": false,
  "helpfulCount": 176,
  "createdAt": "2025-07-24T08:49:22.124Z",
  "updatedAt": "2025-11-19T21:34:14.816Z"
}