example-data.com

products / #158

Licensed Bronze Shoes

Licensed Bronze Shoes

Weber - Wiegand

USD110.29

In stock

★ 4.3 (1922)

The Reverse-engineered directional knowledge user Fish offers reliable performance and true design

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/158"
)
product = res.json()
{
  "id": 158,
  "sku": "0ABO8M7873",
  "name": "Licensed Bronze Shoes",
  "slug": "licensed-bronze-shoes-158",
  "description": "The Reverse-engineered directional knowledge user Fish offers reliable performance and true design",
  "category": "kitchen",
  "brand": "Weber - Wiegand",
  "price": 110.29,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 302,
  "rating": 4.3,
  "ratingCount": 1922,
  "imageUrl": "https://picsum.photos/seed/product-158/800/800",
  "createdAt": "2025-12-17T19:32:35.798Z",
  "updatedAt": "2026-04-15T22:02:03.017Z"
}
Draftbit