example-data.com

products / #45

Handcrafted Cotton Hat

Handcrafted Cotton Hat

Haag Inc

USD116.99 USD86.32

In stock

★ 3.3 (3233)

New gold Fish with ergonomic design for mean comfort

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/45"
)
product = res.json()
{
  "id": 45,
  "sku": "8J5BDI5BKY",
  "name": "Handcrafted Cotton Hat",
  "slug": "handcrafted-cotton-hat-45",
  "description": "New gold Fish with ergonomic design for mean comfort",
  "category": "home",
  "brand": "Haag Inc",
  "price": 116.99,
  "salePrice": 86.32,
  "currency": "USD",
  "inStock": true,
  "stockCount": 423,
  "rating": 3.3,
  "ratingCount": 3233,
  "imageUrl": "https://picsum.photos/seed/product-45/800/800",
  "createdAt": "2024-08-09T03:08:30.927Z",
  "updatedAt": "2025-09-15T03:35:01.986Z"
}
Draftbit