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
Overview
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/142" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/142" ); 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/142"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/142"
)
product = res.json() Response
{
"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"
}