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
Overview
products / #37
Emmerich, Lemke and Wiza
USD263.29
In stock
★ 3.9 (878)
Introducing the Sudan-inspired Mouse, blending affectionate style with local craftsmanship
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/37" ); 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/37"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/37"
)
product = res.json() Response
{
"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"
}