example-data.com

products / #129

Licensed Silk Car

Licensed Silk Car

Tromp, Barrows and Veum

USD418.99

In stock

★ 4.4 (2452)

The Gaetano Pizza is the latest in a series of lovable products from Trantow - Smitham

Category
electronics

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/129"
)
product = res.json()
{
  "id": 129,
  "sku": "ZITMZIKI15",
  "name": "Licensed Silk Car",
  "slug": "licensed-silk-car-129",
  "description": "The Gaetano Pizza is the latest in a series of lovable products from Trantow - Smitham",
  "category": "electronics",
  "brand": "Tromp, Barrows and Veum",
  "price": 418.99,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 412,
  "rating": 4.4,
  "ratingCount": 2452,
  "imageUrl": "https://picsum.photos/seed/product-129/800/800",
  "createdAt": "2025-01-31T19:02:07.350Z",
  "updatedAt": "2025-07-22T13:32:26.387Z"
}
Draftbit