example-data.com

products / #15

Small Cotton Towels

Small Cotton Towels

Ullrich and Sons

USD475.29 USD404.09

In stock

★ 4.9 (4626)

New mint green Pants with ergonomic design for acclaimed comfort

Category
electronics

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/15"
)
product = res.json()
{
  "id": 15,
  "sku": "KI2M2X2ZOU",
  "name": "Small Cotton Towels",
  "slug": "small-cotton-towels-15",
  "description": "New mint green Pants with ergonomic design for acclaimed comfort",
  "category": "electronics",
  "brand": "Ullrich and Sons",
  "price": 475.29,
  "salePrice": 404.09,
  "currency": "USD",
  "inStock": true,
  "stockCount": 417,
  "rating": 4.9,
  "ratingCount": 4626,
  "imageUrl": "https://picsum.photos/seed/product-15/800/800",
  "createdAt": "2026-04-04T19:57:43.349Z",
  "updatedAt": "2026-05-03T17:45:44.620Z"
}
Draftbit