Refined Cotton Mouse
Cassin - Homenick
USD355.34
In stock
★ 2.9 (201)
New Keyboard model with 13 GB RAM, 894 GB storage, and pertinent features
- Category
- kitchen
Overview
products / #163
Cassin - Homenick
USD355.34
In stock
★ 2.9 (201)
New Keyboard model with 13 GB RAM, 894 GB storage, and pertinent features
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/163" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/163" ); 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/163"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/163"
)
product = res.json() Response
{
"id": 163,
"sku": "PI9D3XU00D",
"name": "Refined Cotton Mouse",
"slug": "refined-cotton-mouse-163",
"description": "New Keyboard model with 13 GB RAM, 894 GB storage, and pertinent features",
"category": "kitchen",
"brand": "Cassin - Homenick",
"price": 355.34,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 232,
"rating": 2.9,
"ratingCount": 201,
"imageUrl": "https://picsum.photos/seed/product-163/800/800",
"createdAt": "2025-02-17T16:07:13.942Z",
"updatedAt": "2025-08-27T00:53:13.732Z"
}