example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #349

Deleniti ars thymbra solum torrens acervus.

productId
Soft Bamboo Ball USD163.18
userId
Nikko Kuhlman @nikko_kuhlman
rating
4.5
title
Deleniti ars thymbra solum torrens acervus.
body
Usque maxime verus varietas carmen vinitor angelus.
isVerified
true
helpfulCount
200
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 349,
  "productId": 73,
  "userId": 122,
  "rating": 4.5,
  "title": "Deleniti ars thymbra solum torrens acervus.",
  "body": "Usque maxime verus varietas carmen vinitor angelus.",
  "isVerified": true,
  "helpfulCount": 200,
  "createdAt": "2025-08-23T02:07:03.702Z",
  "updatedAt": "2025-12-18T04:41:55.511Z"
}