Ergonomic Cotton Table
Kuhic, Kuhic and Kub
USD474.39
In stock
★ 1.8 (1861)
Savor the spicy essence in our Fish, designed for unique culinary adventures
- Category
- home
Overview
products / #100
Kuhic, Kuhic and Kub
USD474.39
In stock
★ 1.8 (1861)
Savor the spicy essence in our Fish, designed for unique culinary adventures
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/100" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/100" ); 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/100"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/100"
)
product = res.json() Response
{
"id": 100,
"sku": "41NQ0U2EIW",
"name": "Ergonomic Cotton Table",
"slug": "ergonomic-cotton-table-100",
"description": "Savor the spicy essence in our Fish, designed for unique culinary adventures",
"category": "home",
"brand": "Kuhic, Kuhic and Kub",
"price": 474.39,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 239,
"rating": 1.8,
"ratingCount": 1861,
"imageUrl": "https://picsum.photos/seed/product-100/800/800",
"createdAt": "2025-01-06T11:34:56.380Z",
"updatedAt": "2025-07-15T16:20:54.677Z"
}