example-data.com

products / #194

Refined Cotton Shoes

Refined Cotton Shoes

Pfannerstill - Goldner

USD488.15 USD295.67

In stock

★ 1.5 (2978)

New Towels model with 88 GB RAM, 784 GB storage, and numb features

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/194"
)
product = res.json()
{
  "id": 194,
  "sku": "CXVWLDS0XX",
  "name": "Refined Cotton Shoes",
  "slug": "refined-cotton-shoes-194",
  "description": "New Towels model with 88 GB RAM, 784 GB storage, and numb features",
  "category": "toys",
  "brand": "Pfannerstill - Goldner",
  "price": 488.15,
  "salePrice": 295.67,
  "currency": "USD",
  "inStock": true,
  "stockCount": 145,
  "rating": 1.5,
  "ratingCount": 2978,
  "imageUrl": "https://picsum.photos/seed/product-194/800/800",
  "createdAt": "2025-12-02T22:51:52.911Z",
  "updatedAt": "2026-04-09T20:13:45.558Z"
}
Draftbit