example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #912

Vereor argentum ustulo auctus.

productId
Fresh Granite Bacon USD277.00
userId
Cayla Farrell @cayla_farrell
rating
2
title
Vereor argentum ustulo auctus.
body
Natus cuius versus acerbitas verumtamen bardus admitto derideo. Una hic inventore dolores constans armarium.
isVerified
false
helpfulCount
11
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 912,
  "productId": 198,
  "userId": 4,
  "rating": 2,
  "title": "Vereor argentum ustulo auctus.",
  "body": "Natus cuius versus acerbitas verumtamen bardus admitto derideo. Una hic inventore dolores constans armarium.",
  "isVerified": false,
  "helpfulCount": 11,
  "createdAt": "2025-04-13T11:20:53.663Z",
  "updatedAt": "2026-03-07T17:56:29.054Z"
}