example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #506

Crinis truculenter ipsa.

productId
Small Silk Mouse USD94.19
userId
Conrad Connelly @conrad.connelly22
rating
3
title
Crinis truculenter ipsa.
body
Trado audio tametsi minus ascit deinde. Conventus vergo auxilium cubicularis vivo creptio communis.
isVerified
false
helpfulCount
61
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 506,
  "productId": 110,
  "userId": 30,
  "rating": 3,
  "title": "Crinis truculenter ipsa.",
  "body": "Trado audio tametsi minus ascit deinde. Conventus vergo auxilium cubicularis vivo creptio communis.",
  "isVerified": false,
  "helpfulCount": 61,
  "createdAt": "2024-10-28T03:10:37.113Z",
  "updatedAt": "2026-03-26T16:24:59.807Z"
}