example-data.com

products / #101

Modern Marble Sausages

Modern Marble Sausages

Swaniawski - Padberg

USD264.75

In stock

★ 3.4 (2504)

Our moist-inspired Table brings a taste of luxury to your rusty lifestyle

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/101"
)
product = res.json()
{
  "id": 101,
  "sku": "XG3RNK6V1L",
  "name": "Modern Marble Sausages",
  "slug": "modern-marble-sausages-101",
  "description": "Our moist-inspired Table brings a taste of luxury to your rusty lifestyle",
  "category": "home",
  "brand": "Swaniawski - Padberg",
  "price": 264.75,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 358,
  "rating": 3.4,
  "ratingCount": 2504,
  "imageUrl": "https://picsum.photos/seed/product-101/800/800",
  "createdAt": "2026-02-04T16:08:22.067Z",
  "updatedAt": "2026-05-13T01:45:19.881Z"
}
Draftbit