example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #503

Alo substantia stips culpo apud perspiciatis deporto suspendo.

productId
Licensed Rubber Chair USD91.41
userId
Americo Hoppe @americo_hoppe57
rating
5
title
Alo substantia stips culpo apud perspiciatis deporto suspendo.
body
Solum trado cui. Repellendus venustas cultellus desidero id iure timor vapulus reprehenderit.
isVerified
true
helpfulCount
72
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 503,
  "productId": 109,
  "userId": 177,
  "rating": 5,
  "title": "Alo substantia stips culpo apud perspiciatis deporto suspendo.",
  "body": "Solum trado cui. Repellendus venustas cultellus desidero id iure timor vapulus reprehenderit.",
  "isVerified": true,
  "helpfulCount": 72,
  "createdAt": "2024-09-01T09:58:20.871Z",
  "updatedAt": "2026-05-09T21:24:19.669Z"
}