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
Overview
products / #101
Swaniawski - Padberg
USD264.75
In stock
★ 3.4 (2504)
Our moist-inspired Table brings a taste of luxury to your rusty lifestyle
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/101" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/101" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/101"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/101"
)
product = res.json() Response
{
"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"
}