example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #566

Aer ciminatio velut vindico vos theca asporto annus.

productId
Tasty Gold Salad USD40.59
userId
Wade Upton @wade_upton78
rating
2.5
title
Aer ciminatio velut vindico vos theca asporto annus.
body
Summa cultellus sponte cupressus. Ea terga deorsum tyrannus.
isVerified
true
helpfulCount
81
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 566,
  "productId": 126,
  "userId": 129,
  "rating": 2.5,
  "title": "Aer ciminatio velut vindico vos theca asporto annus.",
  "body": "Summa cultellus sponte cupressus. Ea terga deorsum tyrannus.",
  "isVerified": true,
  "helpfulCount": 81,
  "createdAt": "2025-07-17T12:24:09.002Z",
  "updatedAt": "2025-08-03T04:07:40.343Z"
}