example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #558

Vesica temperantia beneficium alii auctor depopulo.

productId
Elegant Concrete Table USD54.09
userId
Kenya Abshire @kenya.abshire
rating
5
title
Vesica temperantia beneficium alii auctor depopulo.
body
Civis adicio tonsor titulus suppellex uredo amicitia tui laudantium.
isVerified
true
helpfulCount
61
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 558,
  "productId": 123,
  "userId": 18,
  "rating": 5,
  "title": "Vesica temperantia beneficium alii auctor depopulo.",
  "body": "Civis adicio tonsor titulus suppellex uredo amicitia tui laudantium.",
  "isVerified": true,
  "helpfulCount": 61,
  "createdAt": "2024-08-10T12:22:00.539Z",
  "updatedAt": "2025-07-01T23:18:35.977Z"
}