Intelligent Ceramic Keyboard
Rice and Sons
USD112.99
In stock
★ 3.3 (4582)
The sleek and sore Keyboard comes with lavender LED lighting for smart functionality
- Category
- clothing
Overview
products / #114
Rice and Sons
USD112.99
In stock
★ 3.3 (4582)
The sleek and sore Keyboard comes with lavender LED lighting for smart functionality
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/114" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/114" ); 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/114"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/114"
)
product = res.json() Response
{
"id": 114,
"sku": "DA3PWS2SA6",
"name": "Intelligent Ceramic Keyboard",
"slug": "intelligent-ceramic-keyboard-114",
"description": "The sleek and sore Keyboard comes with lavender LED lighting for smart functionality",
"category": "clothing",
"brand": "Rice and Sons",
"price": 112.99,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 32,
"rating": 3.3,
"ratingCount": 4582,
"imageUrl": "https://picsum.photos/seed/product-114/800/800",
"createdAt": "2026-01-31T03:00:38.284Z",
"updatedAt": "2026-03-11T04:11:56.809Z"
}