example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #112

Esse catena accusator succurro.

productId
Sleek Rubber Mouse USD238.05
userId
Nikko Kuhlman @nikko_kuhlman
rating
4
title
Esse catena accusator succurro.
body
Corona arbor tabgo cubo suggero tabella inflammatio pel stella. Concedo vomer amet.
isVerified
false
helpfulCount
75
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 112,
  "productId": 22,
  "userId": 122,
  "rating": 4,
  "title": "Esse catena accusator succurro.",
  "body": "Corona arbor tabgo cubo suggero tabella inflammatio pel stella. Concedo vomer amet.",
  "isVerified": false,
  "helpfulCount": 75,
  "createdAt": "2025-06-10T21:33:08.255Z",
  "updatedAt": "2025-08-24T15:43:58.767Z"
}