example-data.com

products / #4

Refined Plastic Bacon

Refined Plastic Bacon

Sporer, Moore and Huel

USD160.19

In stock

★ 4.3 (1302)

The sleek and purple Chair comes with plum LED lighting for smart functionality

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/4"
)
product = res.json()
{
  "id": 4,
  "sku": "M92RYK43BZ",
  "name": "Refined Plastic Bacon",
  "slug": "refined-plastic-bacon-4",
  "description": "The sleek and purple Chair comes with plum LED lighting for smart functionality",
  "category": "toys",
  "brand": "Sporer, Moore and Huel",
  "price": 160.19,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 20,
  "rating": 4.3,
  "ratingCount": 1302,
  "imageUrl": "https://picsum.photos/seed/product-4/800/800",
  "createdAt": "2026-04-30T00:40:47.259Z",
  "updatedAt": "2026-05-07T00:20:34.706Z"
}
Draftbit