Practical Aluminum Bike
Baumbach - Schumm
USD236.29
In stock
★ 2.0 (3268)
Savor the tangy essence in our Ball, designed for miserable culinary adventures
- Category
- home
products / #197
Baumbach - Schumm
USD236.29
In stock
★ 2.0 (3268)
Savor the tangy essence in our Ball, designed for miserable culinary adventures
curl -sS \
"https://example-data.com/api/v1/products/197" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/197"
);
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/197"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/197"
)
product = res.json() {
"id": 197,
"sku": "JDMKVV43MS",
"name": "Practical Aluminum Bike",
"slug": "practical-aluminum-bike-197",
"description": "Savor the tangy essence in our Ball, designed for miserable culinary adventures",
"category": "home",
"brand": "Baumbach - Schumm",
"price": 236.29,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 441,
"rating": 2,
"ratingCount": 3268,
"imageUrl": "https://picsum.photos/seed/product-197/800/800",
"createdAt": "2025-08-22T11:14:11.681Z",
"updatedAt": "2025-12-09T00:15:00.897Z"
}