example-data.com

products / #178

Rustic Rubber Bacon

Rustic Rubber Bacon

Pfannerstill - Crona

USD116.85

In stock

★ 1.0 (534)

The Sustainable maximized complexity Salad offers reliable performance and faraway design

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/178"
)
product = res.json()
{
  "id": 178,
  "sku": "8RCGWUN148",
  "name": "Rustic Rubber Bacon",
  "slug": "rustic-rubber-bacon-178",
  "description": "The Sustainable maximized complexity Salad offers reliable performance and faraway design",
  "category": "kitchen",
  "brand": "Pfannerstill - Crona",
  "price": 116.85,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 172,
  "rating": 1,
  "ratingCount": 534,
  "imageUrl": "https://picsum.photos/seed/product-178/800/800",
  "createdAt": "2025-11-24T01:02:46.736Z",
  "updatedAt": "2026-02-15T14:22:32.791Z"
}
Draftbit