example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #156

Iure crebro cena videlicet vulariter annus truculenter.

productId
Soft Wooden Towels USD282.85
userId
Jesse Kiehn @jesse_kiehn92
rating
4.5
title
Iure crebro cena videlicet vulariter annus truculenter.
body
Curatio alioqui deleo deficio distinctio.
isVerified
true
helpfulCount
191
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 156,
  "productId": 32,
  "userId": 76,
  "rating": 4.5,
  "title": "Iure crebro cena videlicet vulariter annus truculenter.",
  "body": "Curatio alioqui deleo deficio distinctio.",
  "isVerified": true,
  "helpfulCount": 191,
  "createdAt": "2024-09-27T08:58:28.977Z",
  "updatedAt": "2024-10-25T09:43:52.580Z"
}