Licensed Bronze Computer
Torp, Klocko and Dibbert
USD455.25
Out of stock
★ 3.1 (2002)
Discover the helpless new Towels with an exciting mix of Wooden ingredients
- Category
- home
products / #199
Torp, Klocko and Dibbert
USD455.25
Out of stock
★ 3.1 (2002)
Discover the helpless new Towels with an exciting mix of Wooden ingredients
curl -sS \
"https://example-data.com/api/v1/products/199" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/199"
);
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/199"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/199"
)
product = res.json() {
"id": 199,
"sku": "J6NYZ9FLPG",
"name": "Licensed Bronze Computer",
"slug": "licensed-bronze-computer-199",
"description": "Discover the helpless new Towels with an exciting mix of Wooden ingredients",
"category": "home",
"brand": "Torp, Klocko and Dibbert",
"price": 455.25,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 3.1,
"ratingCount": 2002,
"imageUrl": "https://picsum.photos/seed/product-199/800/800",
"createdAt": "2025-11-10T20:43:01.509Z",
"updatedAt": "2026-01-26T01:27:10.229Z"
}