Generic Bronze Computer
Metz, Labadie and Donnelly
USD73.64
In stock
★ 1.8 (2876)
The sleek and exalted Tuna comes with silver LED lighting for smart functionality
- Category
- books
Overview
products / #167
Metz, Labadie and Donnelly
USD73.64
In stock
★ 1.8 (2876)
The sleek and exalted Tuna comes with silver LED lighting for smart functionality
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/167" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/167" ); 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/167"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/167"
)
product = res.json() Response
{
"id": 167,
"sku": "9Z59UPO9JM",
"name": "Generic Bronze Computer",
"slug": "generic-bronze-computer-167",
"description": "The sleek and exalted Tuna comes with silver LED lighting for smart functionality",
"category": "books",
"brand": "Metz, Labadie and Donnelly",
"price": 73.64,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 200,
"rating": 1.8,
"ratingCount": 2876,
"imageUrl": "https://picsum.photos/seed/product-167/800/800",
"createdAt": "2025-08-27T20:07:23.695Z",
"updatedAt": "2025-09-05T23:38:42.303Z"
}