example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #205

Somnus color textor terga rem utor adiuvo allatus.

productId
Oriental Rubber Shirt USD24.35
userId
Roma Durgan @roma.durgan
rating
5
title
Somnus color textor terga rem utor adiuvo allatus.
body
Artificiose animus candidus amo deinde nam vomer asperiores. Ipsam caecus considero esse.
isVerified
true
helpfulCount
156
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 205,
  "productId": 42,
  "userId": 215,
  "rating": 5,
  "title": "Somnus color textor terga rem utor adiuvo allatus.",
  "body": "Artificiose animus candidus amo deinde nam vomer asperiores. Ipsam caecus considero esse.",
  "isVerified": true,
  "helpfulCount": 156,
  "createdAt": "2025-12-28T03:20:21.385Z",
  "updatedAt": "2026-03-15T17:44:37.586Z"
}