example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #262

Nesciunt animadverto accedo caelestis amplus tui fugit cruciamentum.

productId
Luxurious Cotton Tuna USD180.84
userId
Sarah West @sarah.west
rating
2.5
title
Nesciunt animadverto accedo caelestis amplus tui fugit cruciamentum.
body
Cinis sursum somniculosus cervus modi.
isVerified
true
helpfulCount
136
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 262,
  "productId": 53,
  "userId": 217,
  "rating": 2.5,
  "title": "Nesciunt animadverto accedo caelestis amplus tui fugit cruciamentum.",
  "body": "Cinis sursum somniculosus cervus modi.",
  "isVerified": true,
  "helpfulCount": 136,
  "createdAt": "2026-02-17T05:44:28.060Z",
  "updatedAt": "2026-05-19T18:33:26.531Z"
}