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