example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #381

Vilicus crapula cauda bibo ex cavus thema tener.

productId
Practical Marble Towels USD337.79
userId
Sarah West @sarah.west
rating
1.5
title
Vilicus crapula cauda bibo ex cavus thema tener.
body
Abduco bos at acervus ante theca tolero. Solvo verbum capto.
isVerified
true
helpfulCount
147
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 381,
  "productId": 81,
  "userId": 217,
  "rating": 1.5,
  "title": "Vilicus crapula cauda bibo ex cavus thema tener.",
  "body": "Abduco bos at acervus ante theca tolero. Solvo verbum capto.",
  "isVerified": true,
  "helpfulCount": 147,
  "createdAt": "2026-04-28T07:27:50.789Z",
  "updatedAt": "2026-04-29T22:43:29.303Z"
}