Modern Silk Sausages
Connelly, Daugherty and Stehr
USD295.99
In stock
★ 3.9 (773)
Discover the remorseful new Sausages with an exciting mix of Cotton ingredients
- Category
- books
products / #27
Connelly, Daugherty and Stehr
USD295.99
In stock
★ 3.9 (773)
Discover the remorseful new Sausages with an exciting mix of Cotton ingredients
curl -sS \
"https://example-data.com/api/v1/products/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/27"
);
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/27"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/27"
)
product = res.json() {
"id": 27,
"sku": "DBR5TIF5HY",
"name": "Modern Silk Sausages",
"slug": "modern-silk-sausages-27",
"description": "Discover the remorseful new Sausages with an exciting mix of Cotton ingredients",
"category": "books",
"brand": "Connelly, Daugherty and Stehr",
"price": 295.99,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 491,
"rating": 3.9,
"ratingCount": 773,
"imageUrl": "https://picsum.photos/seed/product-27/800/800",
"createdAt": "2025-02-15T13:38:10.073Z",
"updatedAt": "2026-03-11T19:14:41.698Z"
}