Recycled Silk Shoes
McDermott, Kerluke and Fay
USD363.30 USD200.65
In stock
★ 2.8 (4625)
Anderson - O'Keefe's most advanced Pizza technology increases marvelous capabilities
- Category
- home
Overview
products / #91
McDermott, Kerluke and Fay
USD363.30 USD200.65
In stock
★ 2.8 (4625)
Anderson - O'Keefe's most advanced Pizza technology increases marvelous capabilities
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/91" ); 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/91"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/91"
)
product = res.json() Response
{
"id": 91,
"sku": "ZEDUV0HTPQ",
"name": "Recycled Silk Shoes",
"slug": "recycled-silk-shoes-91",
"description": "Anderson - O'Keefe's most advanced Pizza technology increases marvelous capabilities",
"category": "home",
"brand": "McDermott, Kerluke and Fay",
"price": 363.3,
"salePrice": 200.65,
"currency": "USD",
"inStock": true,
"stockCount": 66,
"rating": 2.8,
"ratingCount": 4625,
"imageUrl": "https://picsum.photos/seed/product-91/800/800",
"createdAt": "2026-03-04T04:16:26.471Z",
"updatedAt": "2026-04-25T15:19:29.601Z"
}