example-data.com

products / #110

Small Silk Mouse

Small Silk Mouse

Ratke, Brown and Reichert

USD94.19

Out of stock

★ 3.4 (4118)

Professional-grade Cheese perfect for useless training and recreational use

Category
books

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/110"
)
product = res.json()
{
  "id": 110,
  "sku": "2VI77YDUCD",
  "name": "Small Silk Mouse",
  "slug": "small-silk-mouse-110",
  "description": "Professional-grade Cheese perfect for useless training and recreational use",
  "category": "books",
  "brand": "Ratke, Brown and Reichert",
  "price": 94.19,
  "salePrice": null,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 3.4,
  "ratingCount": 4118,
  "imageUrl": "https://picsum.photos/seed/product-110/800/800",
  "createdAt": "2026-05-20T22:13:39.834Z",
  "updatedAt": "2026-05-21T15:44:47.752Z"
}
Draftbit