example-data.com

products / #55

Sleek Cotton Hat

Sleek Cotton Hat

Boehm - Hagenes

USD189.99

In stock

★ 3.5 (2110)

The sleek and rectangular Chair comes with black LED lighting for smart functionality

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/55"
)
product = res.json()
{
  "id": 55,
  "sku": "4K8DOEHO2L",
  "name": "Sleek Cotton Hat",
  "slug": "sleek-cotton-hat-55",
  "description": "The sleek and rectangular Chair comes with black LED lighting for smart functionality",
  "category": "kitchen",
  "brand": "Boehm - Hagenes",
  "price": 189.99,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 140,
  "rating": 3.5,
  "ratingCount": 2110,
  "imageUrl": "https://picsum.photos/seed/product-55/800/800",
  "createdAt": "2025-04-03T23:20:24.869Z",
  "updatedAt": "2026-01-27T19:52:35.021Z"
}
Draftbit