example-data.com

products / #91

Recycled Silk Shoes

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

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/91" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/91"
);
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/91"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/91"
)
product = res.json()
{
  "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"
}
Draftbit