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
Overview
products / #10
Herzog LLC
USD6.29
In stock
★ 2.3 (4336)
Introducing the American Samoa-inspired Table, blending glorious style with local craftsmanship
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/10" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/10"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/10"
)
product = res.json() Response
{
"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"
}