example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #756

Thymbra teres subseco.

productId
Bespoke Ceramic Gloves USD55.89
userId
Orrin Grant @orrin.grant42
rating
3.5
title
Thymbra teres subseco.
body
Creptio suadeo centum tristis alter aeternus decretum cultura caveo harum. Curis crinis timor animi. Adeptio defluo suppono ea.
isVerified
true
helpfulCount
127
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 756,
  "productId": 164,
  "userId": 152,
  "rating": 3.5,
  "title": "Thymbra teres subseco.",
  "body": "Creptio suadeo centum tristis alter aeternus decretum cultura caveo harum. Curis crinis timor animi. Adeptio defluo suppono ea.",
  "isVerified": true,
  "helpfulCount": 127,
  "createdAt": "2024-07-24T20:36:40.927Z",
  "updatedAt": "2025-03-01T22:58:52.384Z"
}