Licensed Ceramic Shirt
Feeney - Kshlerin
USD62.10
In stock
★ 4.4 (4629)
The Alize Hat is the latest in a series of some products from Hodkiewicz - Waters
- Category
- kitchen
products / #79
Feeney - Kshlerin
USD62.10
In stock
★ 4.4 (4629)
The Alize Hat is the latest in a series of some products from Hodkiewicz - Waters
curl -sS \
"https://example-data.com/api/v1/products/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/79"
);
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/79"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/79"
)
product = res.json() {
"id": 79,
"sku": "XGSI26K53S",
"name": "Licensed Ceramic Shirt",
"slug": "licensed-ceramic-shirt-79",
"description": "The Alize Hat is the latest in a series of some products from Hodkiewicz - Waters",
"category": "kitchen",
"brand": "Feeney - Kshlerin",
"price": 62.1,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 469,
"rating": 4.4,
"ratingCount": 4629,
"imageUrl": "https://picsum.photos/seed/product-79/800/800",
"createdAt": "2025-11-21T03:12:14.060Z",
"updatedAt": "2026-02-17T19:35:49.415Z"
}