Sleek Cotton Keyboard
Kemmer Group
USD323.20
In stock
★ 1.4 (361)
The Georgianna Chair is the latest in a series of gleaming products from Auer - Reinger
- Category
- electronics
products / #142
Kemmer Group
USD323.20
In stock
★ 1.4 (361)
The Georgianna Chair is the latest in a series of gleaming products from Auer - Reinger
curl -sS \
"https://example-data.com/api/v1/products/142" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/142"
);
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/142"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/142"
)
product = res.json() {
"id": 142,
"sku": "Z1JVOBU9IY",
"name": "Sleek Cotton Keyboard",
"slug": "sleek-cotton-keyboard-142",
"description": "The Georgianna Chair is the latest in a series of gleaming products from Auer - Reinger",
"category": "electronics",
"brand": "Kemmer Group",
"price": 323.2,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 214,
"rating": 1.4,
"ratingCount": 361,
"imageUrl": "https://picsum.photos/seed/product-142/800/800",
"createdAt": "2025-03-27T08:49:29.228Z",
"updatedAt": "2025-06-03T05:23:19.959Z"
}