example-data.com

products / #99

Frozen Plastic Bacon

Frozen Plastic Bacon

Morissette - Cronin

USD330.99

In stock

★ 3.0 (1937)

New orchid Shirt with ergonomic design for doting comfort

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/99"
)
product = res.json()
{
  "id": 99,
  "sku": "I0S6CEZTIF",
  "name": "Frozen Plastic Bacon",
  "slug": "frozen-plastic-bacon-99",
  "description": "New orchid Shirt with ergonomic design for doting comfort",
  "category": "kitchen",
  "brand": "Morissette - Cronin",
  "price": 330.99,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 247,
  "rating": 3,
  "ratingCount": 1937,
  "imageUrl": "https://picsum.photos/seed/product-99/800/800",
  "createdAt": "2024-12-24T07:38:08.160Z",
  "updatedAt": "2025-10-13T23:30:36.672Z"
}
Draftbit