Frozen Bamboo Chips
Emmerich, Lemke and Wiza
USD263.29
In stock
★ 3.9 (878)
Introducing the Sudan-inspired Mouse, blending affectionate style with local craftsmanship
- Category
- electronics
products / #37
Emmerich, Lemke and Wiza
USD263.29
In stock
★ 3.9 (878)
Introducing the Sudan-inspired Mouse, blending affectionate style with local craftsmanship
curl -sS \
"https://example-data.com/api/v1/products/37" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/37"
);
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/37"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/37"
)
product = res.json() {
"id": 37,
"sku": "S90MAQJFTS",
"name": "Frozen Bamboo Chips",
"slug": "frozen-bamboo-chips-37",
"description": "Introducing the Sudan-inspired Mouse, blending affectionate style with local craftsmanship",
"category": "electronics",
"brand": "Emmerich, Lemke and Wiza",
"price": 263.29,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 182,
"rating": 3.9,
"ratingCount": 878,
"imageUrl": "https://picsum.photos/seed/product-37/800/800",
"createdAt": "2024-09-19T15:44:32.833Z",
"updatedAt": "2025-08-01T18:36:27.239Z"
}