Fantastic Ceramic Keyboard
Borer Inc
USD138.45
In stock
★ 1.3 (4458)
The Kailee Mouse is the latest in a series of polite products from Bergstrom - Beatty
- Category
- kitchen
products / #60
Borer Inc
USD138.45
In stock
★ 1.3 (4458)
The Kailee Mouse is the latest in a series of polite products from Bergstrom - Beatty
curl -sS \
"https://example-data.com/api/v1/products/60" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/60"
);
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/60"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/60"
)
product = res.json() {
"id": 60,
"sku": "FVRDR3ZD49",
"name": "Fantastic Ceramic Keyboard",
"slug": "fantastic-ceramic-keyboard-60",
"description": "The Kailee Mouse is the latest in a series of polite products from Bergstrom - Beatty",
"category": "kitchen",
"brand": "Borer Inc",
"price": 138.45,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 407,
"rating": 1.3,
"ratingCount": 4458,
"imageUrl": "https://picsum.photos/seed/product-60/800/800",
"createdAt": "2025-12-01T11:57:23.739Z",
"updatedAt": "2026-01-18T11:57:19.522Z"
}