example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #880

Viriliter aranea asperiores subiungo synagoga spargo.

productId
Rustic Concrete Hat USD110.09
userId
Bradford Doyle @bradford.doyle42
rating
5
title
Viriliter aranea asperiores subiungo synagoga spargo.
body
Iste culpa adnuo strues totidem custodia texo amitto arx quod. Dolor abutor vereor basium addo timidus terreo. Creator templum magnam ab.
isVerified
false
helpfulCount
1
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 880,
  "productId": 191,
  "userId": 79,
  "rating": 5,
  "title": "Viriliter aranea asperiores subiungo synagoga spargo.",
  "body": "Iste culpa adnuo strues totidem custodia texo amitto arx quod. Dolor abutor vereor basium addo timidus terreo. Creator templum magnam ab.",
  "isVerified": false,
  "helpfulCount": 1,
  "createdAt": "2025-09-19T10:28:55.020Z",
  "updatedAt": "2026-01-16T22:55:56.132Z"
}