Unbranded Bronze Computer
Bogisich and Sons
USD201.19 USD112.30
In stock
★ 2.1 (268)
Our zesty-inspired Bacon brings a taste of luxury to your personal lifestyle
- Category
- books
products / #71
Bogisich and Sons
USD201.19 USD112.30
In stock
★ 2.1 (268)
Our zesty-inspired Bacon brings a taste of luxury to your personal lifestyle
curl -sS \
"https://example-data.com/api/v1/products/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/71"
);
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/71"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/71"
)
product = res.json() {
"id": 71,
"sku": "6L7TC9EVHX",
"name": "Unbranded Bronze Computer",
"slug": "unbranded-bronze-computer-71",
"description": "Our zesty-inspired Bacon brings a taste of luxury to your personal lifestyle",
"category": "books",
"brand": "Bogisich and Sons",
"price": 201.19,
"salePrice": 112.3,
"currency": "USD",
"inStock": true,
"stockCount": 318,
"rating": 2.1,
"ratingCount": 268,
"imageUrl": "https://picsum.photos/seed/product-71/800/800",
"createdAt": "2025-09-30T04:41:18.478Z",
"updatedAt": "2026-02-22T15:19:03.465Z"
}