Small Silk Car
Mraz - Cassin
USD478.99
Out of stock
★ 3.0 (792)
New red Soap with ergonomic design for sore comfort
- Category
- books
Overview
products / #152
Mraz - Cassin
USD478.99
Out of stock
★ 3.0 (792)
New red Soap with ergonomic design for sore comfort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/152" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/152" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/152"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/152"
)
product = res.json() Response
{
"id": 152,
"sku": "UQU0A6ULOB",
"name": "Small Silk Car",
"slug": "small-silk-car-152",
"description": "New red Soap with ergonomic design for sore comfort",
"category": "books",
"brand": "Mraz - Cassin",
"price": 478.99,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 3,
"ratingCount": 792,
"imageUrl": "https://picsum.photos/seed/product-152/800/800",
"createdAt": "2025-11-15T05:56:24.992Z",
"updatedAt": "2026-05-11T01:13:33.291Z"
}