Electronic Steel Shoes
Schimmel LLC
USD481.39
In stock
★ 4.5 (3351)
Innovative Shirt featuring oily technology and Marble construction
- Category
- home
products / #116
Schimmel LLC
USD481.39
In stock
★ 4.5 (3351)
Innovative Shirt featuring oily technology and Marble construction
curl -sS \
"https://example-data.com/api/v1/products/116" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/116"
);
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/116"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/116"
)
product = res.json() {
"id": 116,
"sku": "Y2YQYS35PZ",
"name": "Electronic Steel Shoes",
"slug": "electronic-steel-shoes-116",
"description": "Innovative Shirt featuring oily technology and Marble construction",
"category": "home",
"brand": "Schimmel LLC",
"price": 481.39,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 427,
"rating": 4.5,
"ratingCount": 3351,
"imageUrl": "https://picsum.photos/seed/product-116/800/800",
"createdAt": "2025-04-10T01:34:05.082Z",
"updatedAt": "2025-12-29T01:46:47.039Z"
}