example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #917

Adinventitias anser vaco xiphias stella.

productId
Licensed Bronze Computer USD455.25
userId
Gwendolyn Wyman @gwendolyn.wyman87
rating
4
title
Adinventitias anser vaco xiphias stella.
body
Canonicus accedo sumptus sufficio timor tres theatrum capto. Tabula depono necessitatibus alias calcar vallum.
isVerified
true
helpfulCount
153
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 917,
  "productId": 199,
  "userId": 40,
  "rating": 4,
  "title": "Adinventitias anser vaco xiphias stella.",
  "body": "Canonicus accedo sumptus sufficio timor tres theatrum capto. Tabula depono necessitatibus alias calcar vallum.",
  "isVerified": true,
  "helpfulCount": 153,
  "createdAt": "2025-11-10T06:59:14.437Z",
  "updatedAt": "2025-12-24T22:57:01.550Z"
}