example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #754

Placeat abutor degero coniecto arto chirographum vulnus.

productId
Bespoke Ceramic Gloves USD55.89
userId
Kenya Abshire @kenya.abshire
rating
5
title
Placeat abutor degero coniecto arto chirographum vulnus.
body
Vis velum occaecati cunctatio viriliter.
isVerified
true
helpfulCount
128
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 754,
  "productId": 164,
  "userId": 18,
  "rating": 5,
  "title": "Placeat abutor degero coniecto arto chirographum vulnus.",
  "body": "Vis velum occaecati cunctatio viriliter.",
  "isVerified": true,
  "helpfulCount": 128,
  "createdAt": "2024-06-04T22:55:53.146Z",
  "updatedAt": "2025-02-11T08:37:02.025Z"
}