example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #785

Denuncio quidem voro vereor.

productId
Small Plastic Bacon USD126.54
userId
Alvena Emmerich @alvena_emmerich52
rating
1.5
title
Denuncio quidem voro vereor.
body
Aggredior ustilo temperantia subvenio claustrum cuius ipsa. Tabesco terror vulgaris.
isVerified
true
helpfulCount
180
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 785,
  "productId": 173,
  "userId": 8,
  "rating": 1.5,
  "title": "Denuncio quidem voro vereor.",
  "body": "Aggredior ustilo temperantia subvenio claustrum cuius ipsa. Tabesco terror vulgaris.",
  "isVerified": true,
  "helpfulCount": 180,
  "createdAt": "2024-09-25T17:22:01.986Z",
  "updatedAt": "2026-01-29T20:26:13.387Z"
}