example-data.com

products / #23

Electronic Concrete Cheese

Electronic Concrete Cheese

Willms, Lynch and Stark

USD246.75 USD215.25

In stock

★ 4.3 (1704)

Practical Cheese designed with Wooden for spotless performance

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/23"
)
product = res.json()
{
  "id": 23,
  "sku": "HDN9XNRX22",
  "name": "Electronic Concrete Cheese",
  "slug": "electronic-concrete-cheese-23",
  "description": "Practical Cheese designed with Wooden for spotless performance",
  "category": "home",
  "brand": "Willms, Lynch and Stark",
  "price": 246.75,
  "salePrice": 215.25,
  "currency": "USD",
  "inStock": true,
  "stockCount": 237,
  "rating": 4.3,
  "ratingCount": 1704,
  "imageUrl": "https://picsum.photos/seed/product-23/800/800",
  "createdAt": "2024-12-17T17:10:04.567Z",
  "updatedAt": "2025-12-07T04:45:02.981Z"
}
Draftbit