Incredible Concrete Ball
Casper, Littel and Mann
USD330.60
In stock
★ 2.2 (2366)
The lavender Mouse combines Comoros aesthetics with Calcium-based durability
- Category
- books
products / #12
Casper, Littel and Mann
USD330.60
In stock
★ 2.2 (2366)
The lavender Mouse combines Comoros aesthetics with Calcium-based durability
curl -sS \
"https://example-data.com/api/v1/products/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/12"
);
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/12"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/12"
)
product = res.json() {
"id": 12,
"sku": "HJPFB9CBUM",
"name": "Incredible Concrete Ball",
"slug": "incredible-concrete-ball-12",
"description": "The lavender Mouse combines Comoros aesthetics with Calcium-based durability",
"category": "books",
"brand": "Casper, Littel and Mann",
"price": 330.6,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 232,
"rating": 2.2,
"ratingCount": 2366,
"imageUrl": "https://picsum.photos/seed/product-12/800/800",
"createdAt": "2025-08-25T08:45:56.977Z",
"updatedAt": "2025-08-27T18:22:08.280Z"
}