Intelligent Cotton Chair
Wiegand, Hagenes and Kuphal
USD249.25
Out of stock
★ 3.6 (1051)
Experience the mint green brilliance of our Chips, perfect for cavernous environments
- Category
- kitchen
Overview
products / #117
Wiegand, Hagenes and Kuphal
USD249.25
Out of stock
★ 3.6 (1051)
Experience the mint green brilliance of our Chips, perfect for cavernous environments
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/117" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/117" ); 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/117"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/117"
)
product = res.json() Response
{
"id": 117,
"sku": "CCL3GXME62",
"name": "Intelligent Cotton Chair",
"slug": "intelligent-cotton-chair-117",
"description": "Experience the mint green brilliance of our Chips, perfect for cavernous environments",
"category": "kitchen",
"brand": "Wiegand, Hagenes and Kuphal",
"price": 249.25,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 3.6,
"ratingCount": 1051,
"imageUrl": "https://picsum.photos/seed/product-117/800/800",
"createdAt": "2025-03-21T04:22:03.180Z",
"updatedAt": "2026-02-23T03:46:27.051Z"
}