example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #857

Pecco claustrum adduco abstergo cogo adduco defluo.

productId
Practical Metal Chips USD251.31
userId
Maria Senger @maria.senger
rating
4
title
Pecco claustrum adduco abstergo cogo adduco defluo.
body
Audax compello varietas velit thymbra voveo villa tricesimus certe voco.
isVerified
true
helpfulCount
54
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 857,
  "productId": 186,
  "userId": 120,
  "rating": 4,
  "title": "Pecco claustrum adduco abstergo cogo adduco defluo.",
  "body": "Audax compello varietas velit thymbra voveo villa tricesimus certe voco.",
  "isVerified": true,
  "helpfulCount": 54,
  "createdAt": "2025-02-22T09:47:47.413Z",
  "updatedAt": "2025-12-27T05:53:21.051Z"
}