Curo currus delego.
- productId
-
Recycled Granite Mouse USD131.35
- userId
-
Douglas Frami @douglas.frami
- rating
- 2
- title
- Curo currus delego.
- body
- Arca appello claustrum cohibeo at.
- isVerified
- true
- helpfulCount
- 16
- createdAt
- updatedAt
Overview
product-reviews / #311
Curo currus delego.
#311
Request
curl example
curl -sS \ "https://example-data.com/api/v1/product-reviews/311" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/product-reviews/311" ); 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/311"
);
const productReview = (await res.json()) as ProductReview; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/product-reviews/311"
)
product_review = res.json() Response
{
"id": 311,
"productId": 66,
"userId": 148,
"rating": 2,
"title": "Curo currus delego.",
"body": "Arca appello claustrum cohibeo at.",
"isVerified": true,
"helpfulCount": 16,
"createdAt": "2025-10-29T19:23:22.404Z",
"updatedAt": "2025-11-24T04:03:36.461Z"
}