Licensed Bamboo Bacon
Dooley - Abshire
USD453.35 USD247.99
In stock
★ 3.6 (4761)
The sleek and medium Cheese comes with red LED lighting for smart functionality
- Category
- electronics
products / #41
Dooley - Abshire
USD453.35 USD247.99
In stock
★ 3.6 (4761)
The sleek and medium Cheese comes with red LED lighting for smart functionality
curl -sS \
"https://example-data.com/api/v1/products/41" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/41"
);
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/41"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/41"
)
product = res.json() {
"id": 41,
"sku": "DA5KX3DNB2",
"name": "Licensed Bamboo Bacon",
"slug": "licensed-bamboo-bacon-41",
"description": "The sleek and medium Cheese comes with red LED lighting for smart functionality",
"category": "electronics",
"brand": "Dooley - Abshire",
"price": 453.35,
"salePrice": 247.99,
"currency": "USD",
"inStock": true,
"stockCount": 38,
"rating": 3.6,
"ratingCount": 4761,
"imageUrl": "https://picsum.photos/seed/product-41/800/800",
"createdAt": "2026-02-28T03:11:52.982Z",
"updatedAt": "2026-05-09T03:19:06.525Z"
}