example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #739

Ascit strues hic speciosus adsidue.

productId
Sleek Bamboo Chair USD216.75
userId
Colby Kovacek @colby_kovacek40
rating
3
title
Ascit strues hic speciosus adsidue.
body
Voluntarius synagoga repudiandae tondeo tempus tredecim debitis alias repudiandae placeat.
isVerified
false
helpfulCount
155
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 739,
  "productId": 161,
  "userId": 85,
  "rating": 3,
  "title": "Ascit strues hic speciosus adsidue.",
  "body": "Voluntarius synagoga repudiandae tondeo tempus tredecim debitis alias repudiandae placeat.",
  "isVerified": false,
  "helpfulCount": 155,
  "createdAt": "2026-04-08T01:18:39.530Z",
  "updatedAt": "2026-04-13T18:54:36.463Z"
}