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
Overview
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/73" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/73" ); 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/73"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/73"
)
product = res.json() Response
{
"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"
}