example-data.com

products / #139

Handcrafted Concrete Towels

Handcrafted Concrete Towels

Ziemann, Gusikowski and Gorczany

USD295.79

In stock

★ 3.1 (198)

Stylish Gloves designed to make you stand out with stable looks

Category
electronics

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/139"
)
product = res.json()
{
  "id": 139,
  "sku": "P6ULXFGKP4",
  "name": "Handcrafted Concrete Towels",
  "slug": "handcrafted-concrete-towels-139",
  "description": "Stylish Gloves designed to make you stand out with stable looks",
  "category": "electronics",
  "brand": "Ziemann, Gusikowski and Gorczany",
  "price": 295.79,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 338,
  "rating": 3.1,
  "ratingCount": 198,
  "imageUrl": "https://picsum.photos/seed/product-139/800/800",
  "createdAt": "2026-04-27T16:11:56.828Z",
  "updatedAt": "2026-05-04T14:18:45.912Z"
}
Draftbit