Inventore averto vergo.
- productId
-
Oriental Bamboo Bike USD223.13
- userId
-
Myrtie Daniel @myrtie_daniel33
- rating
- 5
- title
- Inventore averto vergo.
- body
- Certus ipsam defendo.
- isVerified
- false
- helpfulCount
- 191
- createdAt
- updatedAt
Overview
product-reviews / #696
Inventore averto vergo.
#696
Request
curl example
curl -sS \ "https://example-data.com/api/v1/product-reviews/696" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/product-reviews/696" ); 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/696"
);
const productReview = (await res.json()) as ProductReview; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/696"
)
product_review = res.json() Response
{
"id": 696,
"productId": 153,
"userId": 45,
"rating": 5,
"title": "Inventore averto vergo.",
"body": "Certus ipsam defendo.",
"isVerified": false,
"helpfulCount": 191,
"createdAt": "2025-12-06T21:47:01.786Z",
"updatedAt": "2026-04-04T04:44:53.807Z"
}