Practical Bamboo Towels
Mann, Hahn and Streich
USD98.49
In stock
★ 3.2 (2039)
Fresh Pants designed with Bamboo for subdued performance
- Category
- kitchen
Overview
products / #127
Mann, Hahn and Streich
USD98.49
In stock
★ 3.2 (2039)
Fresh Pants designed with Bamboo for subdued performance
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/127" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/127" ); 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/127"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/127"
)
product = res.json() Response
{
"id": 127,
"sku": "5MUSBOU1W3",
"name": "Practical Bamboo Towels",
"slug": "practical-bamboo-towels-127",
"description": "Fresh Pants designed with Bamboo for subdued performance",
"category": "kitchen",
"brand": "Mann, Hahn and Streich",
"price": 98.49,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 96,
"rating": 3.2,
"ratingCount": 2039,
"imageUrl": "https://picsum.photos/seed/product-127/800/800",
"createdAt": "2024-06-10T08:22:28.301Z",
"updatedAt": "2025-12-24T02:14:16.519Z"
}