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
Overview
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/27" ); 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/27"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/27"
)
product = res.json() Response
{
"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"
}