example-data.com

products / #59

Small Steel Chips

Small Steel Chips

Gerlach, Hilpert and Mayer

USD379.25

In stock

★ 4.2 (4456)

Our rich-inspired Bike brings a taste of luxury to your hopeful lifestyle

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/59"
)
product = res.json()
{
  "id": 59,
  "sku": "TC0JAODZIX",
  "name": "Small Steel Chips",
  "slug": "small-steel-chips-59",
  "description": "Our rich-inspired Bike brings a taste of luxury to your hopeful lifestyle",
  "category": "home",
  "brand": "Gerlach, Hilpert and Mayer",
  "price": 379.25,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 162,
  "rating": 4.2,
  "ratingCount": 4456,
  "imageUrl": "https://picsum.photos/seed/product-59/800/800",
  "createdAt": "2025-12-07T02:26:12.476Z",
  "updatedAt": "2026-03-17T23:36:19.327Z"
}
Draftbit