example-data.com

products / #196

Electronic Bronze Pizza

Electronic Bronze Pizza

Leffler - Leffler

USD204.29

In stock

★ 4.9 (2077)

The sleek and austere Fish comes with azure LED lighting for smart functionality

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/196"
)
product = res.json()
{
  "id": 196,
  "sku": "QF2VA6DI8D",
  "name": "Electronic Bronze Pizza",
  "slug": "electronic-bronze-pizza-196",
  "description": "The sleek and austere Fish comes with azure LED lighting for smart functionality",
  "category": "home",
  "brand": "Leffler - Leffler",
  "price": 204.29,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 430,
  "rating": 4.9,
  "ratingCount": 2077,
  "imageUrl": "https://picsum.photos/seed/product-196/800/800",
  "createdAt": "2026-01-20T01:35:48.868Z",
  "updatedAt": "2026-05-10T14:26:42.414Z"
}
Draftbit