example-data.com

products / #163

Refined Cotton Mouse

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

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/163" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/163"
);
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/163"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/163"
)
product = res.json()
{
  "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"
}
Draftbit