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
Overview
products / #67
Kihn and Sons
USD226.39
In stock
★ 3.2 (2692)
Stylish Hat designed to make you stand out with late looks
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/67" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/67" ); 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/67"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/67"
)
product = res.json() Response
{
"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"
}