example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #353

Vorax aggero coruscus deduco unde pecco suscipit stips.

productId
Soft Bamboo Ball USD163.18
userId
Jonas Rath @jonas.rath
rating
1.5
title
Vorax aggero coruscus deduco unde pecco suscipit stips.
body
Suggero demoror truculenter sollers suppellex tergiversatio assentator. Atavus aut facilis deripio ascisco atavus.
isVerified
true
helpfulCount
140
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 353,
  "productId": 73,
  "userId": 138,
  "rating": 1.5,
  "title": "Vorax aggero coruscus deduco unde pecco suscipit stips.",
  "body": "Suggero demoror truculenter sollers suppellex tergiversatio assentator. Atavus aut facilis deripio ascisco atavus.",
  "isVerified": true,
  "helpfulCount": 140,
  "createdAt": "2025-06-26T12:46:50.904Z",
  "updatedAt": "2026-05-21T00:09:30.384Z"
}