Small Silk Car
Mraz - Cassin
USD478.99
Out of stock
★ 3.0 (792)
New red Soap with ergonomic design for sore comfort
- Category
- books
products / #152
Mraz - Cassin
USD478.99
Out of stock
★ 3.0 (792)
New red Soap with ergonomic design for sore comfort
curl -sS \
"https://example-data.com/api/v1/products/152" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/152"
);
const product = await res.json();import type { Product } from "https://example-data.com/types/products.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/products/152"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/152"
)
product = res.json() {
"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"
}