Soft Bamboo Ball
Dickinson, Cole and Howell
USD316.29 USD163.18
In stock
★ 3.5 (4392)
Ergonomic Chips made with Bamboo for all-day athletic support
- Category
- kitchen
products / #73
Dickinson, Cole and Howell
USD316.29 USD163.18
In stock
★ 3.5 (4392)
Ergonomic Chips made with Bamboo for all-day athletic support
curl -sS \
"https://example-data.com/api/v1/products/73" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/73"
);
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/73"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/73"
)
product = res.json() {
"id": 73,
"sku": "W6KXR7864B",
"name": "Soft Bamboo Ball",
"slug": "soft-bamboo-ball-73",
"description": "Ergonomic Chips made with Bamboo for all-day athletic support",
"category": "kitchen",
"brand": "Dickinson, Cole and Howell",
"price": 316.29,
"salePrice": 163.18,
"currency": "USD",
"inStock": true,
"stockCount": 85,
"rating": 3.5,
"ratingCount": 4392,
"imageUrl": "https://picsum.photos/seed/product-73/800/800",
"createdAt": "2026-02-02T18:41:12.353Z",
"updatedAt": "2026-03-12T06:44:47.841Z"
}