example-data.com

products / #162

Fresh Bronze Towels

Fresh Bronze Towels

Waelchi, Walter and Botsford

USD131.69

In stock

★ 2.5 (4381)

Discover the soggy new Hat with an exciting mix of Wooden ingredients

Category
electronics

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/162"
)
product = res.json()
{
  "id": 162,
  "sku": "YNK1YQJI77",
  "name": "Fresh Bronze Towels",
  "slug": "fresh-bronze-towels-162",
  "description": "Discover the soggy new Hat with an exciting mix of Wooden ingredients",
  "category": "electronics",
  "brand": "Waelchi, Walter and Botsford",
  "price": 131.69,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 481,
  "rating": 2.5,
  "ratingCount": 4381,
  "imageUrl": "https://picsum.photos/seed/product-162/800/800",
  "createdAt": "2025-04-14T00:46:29.832Z",
  "updatedAt": "2025-04-18T02:46:00.693Z"
}
Draftbit