example-data.com

products / #167

Generic Bronze Computer

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

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/167" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/167"
);
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/167"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/167"
)
product = res.json()
{
  "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"
}
Draftbit