example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #175

Repellat sophismata abbas demitto cupiditate coniuratio.

productId
Soft Gold Soap USD93.59
userId
Aylin Sanford @aylin.sanford
rating
5
title
Repellat sophismata abbas demitto cupiditate coniuratio.
body
Totus sustineo in causa pectus synagoga eaque universe arceo tandem.
isVerified
false
helpfulCount
188
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 175,
  "productId": 36,
  "userId": 173,
  "rating": 5,
  "title": "Repellat sophismata abbas demitto cupiditate coniuratio.",
  "body": "Totus sustineo in causa pectus synagoga eaque universe arceo tandem.",
  "isVerified": false,
  "helpfulCount": 188,
  "createdAt": "2025-12-09T16:14:54.018Z",
  "updatedAt": "2026-01-04T00:20:46.334Z"
}