Elegant Concrete Table
Kozey, Hintz and Haley
USD54.09
In stock
★ 3.4 (4520)
New teal Table with ergonomic design for athletic comfort
- Category
- clothing
Overview
products / #123
Kozey, Hintz and Haley
USD54.09
In stock
★ 3.4 (4520)
New teal Table with ergonomic design for athletic comfort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/123" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/123" ); 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/123"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/123"
)
product = res.json() Response
{
"id": 123,
"sku": "XW46X7E086",
"name": "Elegant Concrete Table",
"slug": "elegant-concrete-table-123",
"description": "New teal Table with ergonomic design for athletic comfort",
"category": "clothing",
"brand": "Kozey, Hintz and Haley",
"price": 54.09,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 26,
"rating": 3.4,
"ratingCount": 4520,
"imageUrl": "https://picsum.photos/seed/product-123/800/800",
"createdAt": "2026-03-24T11:20:12.873Z",
"updatedAt": "2026-05-17T19:57:15.314Z"
}