example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #127

Theologus acervus aggredior bestia.

productId
Fresh Gold Pants USD424.19
userId
Porter Dooley @porter.dooley
rating
4.5
title
Theologus acervus aggredior bestia.
body
Optio terror textor adicio volutabrum vitiosus.
isVerified
false
helpfulCount
171
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 127,
  "productId": 24,
  "userId": 135,
  "rating": 4.5,
  "title": "Theologus acervus aggredior bestia.",
  "body": "Optio terror textor adicio volutabrum vitiosus.",
  "isVerified": false,
  "helpfulCount": 171,
  "createdAt": "2026-01-19T18:44:47.333Z",
  "updatedAt": "2026-01-31T19:11:31.843Z"
}