Ergonomic Bronze Bacon
Hauck Group
USD151.09
In stock
★ 2.6 (1337)
The sleek and standard Soap comes with white LED lighting for smart functionality
- Category
- kitchen
products / #166
Hauck Group
USD151.09
In stock
★ 2.6 (1337)
The sleek and standard Soap comes with white LED lighting for smart functionality
curl -sS \
"https://example-data.com/api/v1/products/166" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/166"
);
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/166"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/166"
)
product = res.json() {
"id": 166,
"sku": "VOAY9I04WA",
"name": "Ergonomic Bronze Bacon",
"slug": "ergonomic-bronze-bacon-166",
"description": "The sleek and standard Soap comes with white LED lighting for smart functionality",
"category": "kitchen",
"brand": "Hauck Group",
"price": 151.09,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 143,
"rating": 2.6,
"ratingCount": 1337,
"imageUrl": "https://picsum.photos/seed/product-166/800/800",
"createdAt": "2025-01-24T01:08:05.683Z",
"updatedAt": "2025-05-10T03:05:05.378Z"
}