example-data.com

products / #168

Luxurious Ceramic Car

Luxurious Ceramic Car

Carroll, Kohler and McDermott

USD335.85

In stock

★ 1.9 (3706)

Discover the yummy new Tuna with an exciting mix of Gold ingredients

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/168"
)
product = res.json()
{
  "id": 168,
  "sku": "2K4YH7ZIRV",
  "name": "Luxurious Ceramic Car",
  "slug": "luxurious-ceramic-car-168",
  "description": "Discover the yummy new Tuna with an exciting mix of Gold ingredients",
  "category": "beauty",
  "brand": "Carroll, Kohler and McDermott",
  "price": 335.85,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 309,
  "rating": 1.9,
  "ratingCount": 3706,
  "imageUrl": "https://picsum.photos/seed/product-168/800/800",
  "createdAt": "2025-11-22T21:55:13.840Z",
  "updatedAt": "2026-04-13T20:50:31.421Z"
}
Draftbit