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
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
curl -sS \
"https://example-data.com/api/v1/products/117" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/117"
);
const product = await res.json();import type { Product } from "https://example-data.com/types/products.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/products/117"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/117"
)
product = res.json() {
"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"
}