example-data.com

products / #2

Unbranded Silk Cheese

Unbranded Silk Cheese

Robel, Gulgowski and Kautzer

USD176.79

Out of stock

★ 3.7 (906)

The sleek and hollow Mouse comes with red LED lighting for smart functionality

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/2"
)
product = res.json()
{
  "id": 2,
  "sku": "ER5LTW0WDF",
  "name": "Unbranded Silk Cheese",
  "slug": "unbranded-silk-cheese-2",
  "description": "The sleek and hollow Mouse comes with red LED lighting for smart functionality",
  "category": "beauty",
  "brand": "Robel, Gulgowski and Kautzer",
  "price": 176.79,
  "salePrice": null,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 3.7,
  "ratingCount": 906,
  "imageUrl": "https://picsum.photos/seed/product-2/800/800",
  "createdAt": "2025-05-26T17:02:08.345Z",
  "updatedAt": "2026-01-09T09:49:38.889Z"
}
Draftbit