Handcrafted Ceramic Pants
Schroeder - Willms
USD7.29
In stock
★ 2.7 (1934)
Introducing the North Macedonia-inspired Shoes, blending legal style with local craftsmanship
- Category
- clothing
products / #144
Schroeder - Willms
USD7.29
In stock
★ 2.7 (1934)
Introducing the North Macedonia-inspired Shoes, blending legal style with local craftsmanship
curl -sS \
"https://example-data.com/api/v1/products/144" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/144"
);
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/144"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/144"
)
product = res.json() {
"id": 144,
"sku": "FD1M013HN0",
"name": "Handcrafted Ceramic Pants",
"slug": "handcrafted-ceramic-pants-144",
"description": "Introducing the North Macedonia-inspired Shoes, blending legal style with local craftsmanship",
"category": "clothing",
"brand": "Schroeder - Willms",
"price": 7.29,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 295,
"rating": 2.7,
"ratingCount": 1934,
"imageUrl": "https://picsum.photos/seed/product-144/800/800",
"createdAt": "2024-07-20T14:33:17.528Z",
"updatedAt": "2025-06-08T06:16:15.037Z"
}