example-data.com

products / #48

Bespoke Bamboo Hat

Bespoke Bamboo Hat

Bruen - Emmerich

USD317.35 USD259.99

In stock

★ 4.2 (1976)

Our deer-friendly Chair ensures warped comfort for your pets

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/48"
)
product = res.json()
{
  "id": 48,
  "sku": "3EQEDIF2S3",
  "name": "Bespoke Bamboo Hat",
  "slug": "bespoke-bamboo-hat-48",
  "description": "Our deer-friendly Chair ensures warped comfort for your pets",
  "category": "sports",
  "brand": "Bruen - Emmerich",
  "price": 317.35,
  "salePrice": 259.99,
  "currency": "USD",
  "inStock": true,
  "stockCount": 263,
  "rating": 4.2,
  "ratingCount": 1976,
  "imageUrl": "https://picsum.photos/seed/product-48/800/800",
  "createdAt": "2025-10-17T12:36:42.511Z",
  "updatedAt": "2025-12-14T06:59:29.167Z"
}
Draftbit