example-data.com

products / #81

Practical Marble Towels

Practical Marble Towels

Spinka - Schmeler

USD337.79

In stock

★ 1.5 (1506)

Ergonomic Car made with Metal for all-day elegant support

Category
clothing

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/81"
)
product = res.json()
{
  "id": 81,
  "sku": "ZYTS4E3RMR",
  "name": "Practical Marble Towels",
  "slug": "practical-marble-towels-81",
  "description": "Ergonomic Car made with Metal for all-day elegant support",
  "category": "clothing",
  "brand": "Spinka - Schmeler",
  "price": 337.79,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 429,
  "rating": 1.5,
  "ratingCount": 1506,
  "imageUrl": "https://picsum.photos/seed/product-81/800/800",
  "createdAt": "2025-12-05T02:43:40.431Z",
  "updatedAt": "2026-04-25T11:04:06.818Z"
}
Draftbit