example-data.com

products / #98

Electronic Concrete Bacon

Electronic Concrete Bacon

Keebler Inc

USD345.69

In stock

★ 1.2 (2558)

Discover the fond new Bike with an exciting mix of Cotton ingredients

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/98"
)
product = res.json()
{
  "id": 98,
  "sku": "F82Q2DU0GK",
  "name": "Electronic Concrete Bacon",
  "slug": "electronic-concrete-bacon-98",
  "description": "Discover the fond new Bike with an exciting mix of Cotton ingredients",
  "category": "home",
  "brand": "Keebler Inc",
  "price": 345.69,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 453,
  "rating": 1.2,
  "ratingCount": 2558,
  "imageUrl": "https://picsum.photos/seed/product-98/800/800",
  "createdAt": "2024-08-16T06:17:47.845Z",
  "updatedAt": "2025-10-21T16:56:25.041Z"
}
Draftbit