example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #765

Soluta sophismata curiositas thesis infit patior.

productId
Ergonomic Bronze Bacon USD151.09
userId
Gavin Lowe @gavin_lowe
rating
5
title
Soluta sophismata curiositas thesis infit patior.
body
Animadverto vito aperiam coerceo libero attollo verbera condico. Infit temperantia adaugeo nostrum cauda. Caelum celebrer labore ventito una adfectus cado.
isVerified
false
helpfulCount
2
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 765,
  "productId": 166,
  "userId": 17,
  "rating": 5,
  "title": "Soluta sophismata curiositas thesis infit patior.",
  "body": "Animadverto vito aperiam coerceo libero attollo verbera condico. Infit temperantia adaugeo nostrum cauda. Caelum celebrer labore ventito una adfectus cado.",
  "isVerified": false,
  "helpfulCount": 2,
  "createdAt": "2026-02-04T14:23:17.676Z",
  "updatedAt": "2026-03-01T03:44:34.487Z"
}