example-data.com

products / #156

Fresh Bronze Table

Fresh Bronze Table

Hamill - Baumbach

USD237.55

In stock

★ 2.6 (3379)

New Ball model with 71 GB RAM, 7 GB storage, and beneficial features

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/156"
)
product = res.json()
{
  "id": 156,
  "sku": "D75LSX2KXS",
  "name": "Fresh Bronze Table",
  "slug": "fresh-bronze-table-156",
  "description": "New Ball model with 71 GB RAM, 7 GB storage, and beneficial features",
  "category": "sports",
  "brand": "Hamill - Baumbach",
  "price": 237.55,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 461,
  "rating": 2.6,
  "ratingCount": 3379,
  "imageUrl": "https://picsum.photos/seed/product-156/800/800",
  "createdAt": "2024-12-28T16:08:39.609Z",
  "updatedAt": "2025-10-12T03:36:59.862Z"
}
Draftbit