Bespoke Aluminum Ball
Herzog, Little and Hane
USD403.98 USD260.10
In stock
★ 2.2 (4292)
New black Pants with ergonomic design for disloyal comfort
- Category
- home
Overview
products / #14
Herzog, Little and Hane
USD403.98 USD260.10
In stock
★ 2.2 (4292)
New black Pants with ergonomic design for disloyal comfort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/14" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/14" ); 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/14"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/14"
)
product = res.json() Response
{
"id": 14,
"sku": "D7XI5LZAM8",
"name": "Bespoke Aluminum Ball",
"slug": "bespoke-aluminum-ball-14",
"description": "New black Pants with ergonomic design for disloyal comfort",
"category": "home",
"brand": "Herzog, Little and Hane",
"price": 403.98,
"salePrice": 260.1,
"currency": "USD",
"inStock": true,
"stockCount": 494,
"rating": 2.2,
"ratingCount": 4292,
"imageUrl": "https://picsum.photos/seed/product-14/800/800",
"createdAt": "2026-04-08T07:50:40.294Z",
"updatedAt": "2026-04-13T10:42:13.632Z"
}