example-data.com
Menu
Browse docs and collections

Overview

product-reviews / #511

Callide soleo repellendus creber totam verto deserunt tabella.

productId
Oriental Gold Chips USD242.59
userId
Carmel Schultz @carmel.schultz
rating
5
title
Callide soleo repellendus creber totam verto deserunt tabella.
body
Viriliter caute vulariter.
isVerified
true
helpfulCount
77
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 511,
  "productId": 111,
  "userId": 156,
  "rating": 5,
  "title": "Callide soleo repellendus creber totam verto deserunt tabella.",
  "body": "Viriliter caute vulariter.",
  "isVerified": true,
  "helpfulCount": 77,
  "createdAt": "2024-07-08T03:42:45.088Z",
  "updatedAt": "2024-07-27T22:29:09.418Z"
}