example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #99

Synagoga ex vero beatae caritas auctor derideo.

productId
Refined Plastic Chair USD156.63
userId
Talon Turner @talon.turner59
rating
3
title
Synagoga ex vero beatae caritas auctor derideo.
body
Defaeco confugo stabilis. Venio cresco quaerat aduro thorax deporto ustilo talus.
isVerified
true
helpfulCount
14
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 99,
  "productId": 19,
  "userId": 166,
  "rating": 3,
  "title": "Synagoga ex vero beatae caritas auctor derideo.",
  "body": "Defaeco confugo stabilis. Venio cresco quaerat aduro thorax deporto ustilo talus.",
  "isVerified": true,
  "helpfulCount": 14,
  "createdAt": "2025-02-19T14:12:52.254Z",
  "updatedAt": "2026-01-06T16:32:33.574Z"
}