example-data.com

products / #191

Rustic Concrete Hat

Rustic Concrete Hat

Waelchi - Maggio

USD110.09

In stock

★ 4.5 (3969)

Savor the golden essence in our Chair, designed for soggy culinary adventures

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/191"
)
product = res.json()
{
  "id": 191,
  "sku": "LUXG44B5N3",
  "name": "Rustic Concrete Hat",
  "slug": "rustic-concrete-hat-191",
  "description": "Savor the golden essence in our Chair, designed for soggy culinary adventures",
  "category": "home",
  "brand": "Waelchi - Maggio",
  "price": 110.09,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 75,
  "rating": 4.5,
  "ratingCount": 3969,
  "imageUrl": "https://picsum.photos/seed/product-191/800/800",
  "createdAt": "2025-11-17T15:54:17.821Z",
  "updatedAt": "2026-02-17T03:41:12.242Z"
}
Draftbit