example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #833

Deprecator aduro adipiscor amaritudo atavus vitae civis.

productId
Small Silk Salad USD368.15
userId
Talon Turner @talon.turner59
rating
5
title
Deprecator aduro adipiscor amaritudo atavus vitae civis.
body
Succurro asper defluo vomica. Solium tergeo decipio repellat aetas beatae tonsor.
isVerified
true
helpfulCount
70
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 833,
  "productId": 182,
  "userId": 166,
  "rating": 5,
  "title": "Deprecator aduro adipiscor amaritudo atavus vitae civis.",
  "body": "Succurro asper defluo vomica. Solium tergeo decipio repellat aetas beatae tonsor.",
  "isVerified": true,
  "helpfulCount": 70,
  "createdAt": "2024-07-15T02:53:55.755Z",
  "updatedAt": "2026-05-17T17:13:30.567Z"
}