Bespoke Wooden Keyboard
Kihn and Sons
USD226.39
In stock
★ 3.2 (2692)
Stylish Hat designed to make you stand out with late looks
- Category
- sports
products / #67
Kihn and Sons
USD226.39
In stock
★ 3.2 (2692)
Stylish Hat designed to make you stand out with late looks
curl -sS \
"https://example-data.com/api/v1/products/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/67"
);
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/67"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/67"
)
product = res.json() {
"id": 67,
"sku": "36645T6BLN",
"name": "Bespoke Wooden Keyboard",
"slug": "bespoke-wooden-keyboard-67",
"description": "Stylish Hat designed to make you stand out with late looks",
"category": "sports",
"brand": "Kihn and Sons",
"price": 226.39,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 485,
"rating": 3.2,
"ratingCount": 2692,
"imageUrl": "https://picsum.photos/seed/product-67/800/800",
"createdAt": "2025-01-03T01:41:49.269Z",
"updatedAt": "2026-04-25T05:36:58.149Z"
}