Small Concrete Sausages
Langworth, Casper and Ebert
USD455.69
In stock
★ 3.1 (727)
Ergonomic Chicken made with Silk for all-day simplistic support
- Category
- home
products / #62
Langworth, Casper and Ebert
USD455.69
In stock
★ 3.1 (727)
Ergonomic Chicken made with Silk for all-day simplistic support
curl -sS \
"https://example-data.com/api/v1/products/62" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/62"
);
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/62"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/62"
)
product = res.json() {
"id": 62,
"sku": "M7E1GQCUSD",
"name": "Small Concrete Sausages",
"slug": "small-concrete-sausages-62",
"description": "Ergonomic Chicken made with Silk for all-day simplistic support",
"category": "home",
"brand": "Langworth, Casper and Ebert",
"price": 455.69,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 98,
"rating": 3.1,
"ratingCount": 727,
"imageUrl": "https://picsum.photos/seed/product-62/800/800",
"createdAt": "2025-10-05T15:03:06.775Z",
"updatedAt": "2025-10-14T17:11:50.896Z"
}