example-data.com

products / #127

Practical Bamboo Towels

Practical Bamboo Towels

Mann, Hahn and Streich

USD98.49

In stock

★ 3.2 (2039)

Fresh Pants designed with Bamboo for subdued performance

Category
kitchen

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/127" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/127"
);
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/127"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/127"
)
product = res.json()
{
  "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"
}
Draftbit