example-data.com

products / #10

Generic Aluminum Shirt

Generic Aluminum Shirt

Herzog LLC

USD6.29

In stock

★ 2.3 (4336)

Introducing the American Samoa-inspired Table, blending glorious style with local craftsmanship

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/10"
)
product = res.json()
{
  "id": 10,
  "sku": "NN9I47QHTG",
  "name": "Generic Aluminum Shirt",
  "slug": "generic-aluminum-shirt-10",
  "description": "Introducing the American Samoa-inspired Table, blending glorious style with local craftsmanship",
  "category": "home",
  "brand": "Herzog LLC",
  "price": 6.29,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 231,
  "rating": 2.3,
  "ratingCount": 4336,
  "imageUrl": "https://picsum.photos/seed/product-10/800/800",
  "createdAt": "2025-12-26T04:43:05.140Z",
  "updatedAt": "2026-03-27T18:34:00.720Z"
}
Draftbit