example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #221

Repellat adsuesco bellum desidero arbustum.

productId
Handcrafted Cotton Hat USD86.32
userId
Anne Hamill @anne_hamill75
rating
5
title
Repellat adsuesco bellum desidero arbustum.
body
Rerum caterva virtus desolo arx. Cribro ambitus confugo acsi trado.
isVerified
false
helpfulCount
85
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 221,
  "productId": 45,
  "userId": 9,
  "rating": 5,
  "title": "Repellat adsuesco bellum desidero arbustum.",
  "body": "Rerum caterva virtus desolo arx. Cribro ambitus confugo acsi trado.",
  "isVerified": false,
  "helpfulCount": 85,
  "createdAt": "2026-05-07T14:47:04.266Z",
  "updatedAt": "2026-05-18T02:30:47.315Z"
}