example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #673

Ab vilitas demoror anser valeo vesper torrens inflammatio.

productId
Incredible Ceramic Computer USD36.55
userId
Gerald Lind @gerald_lind57
rating
5
title
Ab vilitas demoror anser valeo vesper torrens inflammatio.
body
Coaegresco solium careo antiquus audacia.
isVerified
false
helpfulCount
115
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 673,
  "productId": 148,
  "userId": 179,
  "rating": 5,
  "title": "Ab vilitas demoror anser valeo vesper torrens inflammatio.",
  "body": "Coaegresco solium careo antiquus audacia.",
  "isVerified": false,
  "helpfulCount": 115,
  "createdAt": "2025-11-25T22:28:28.866Z",
  "updatedAt": "2025-12-24T16:19:05.589Z"
}