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
Overview
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/199" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/199" ); 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/199"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/199"
)
product = res.json() Response
{
"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"
}