example-data.com

products / #123

Elegant Concrete Table

Elegant Concrete Table

Kozey, Hintz and Haley

USD54.09

In stock

★ 3.4 (4520)

New teal Table with ergonomic design for athletic comfort

Category
clothing

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/123"
)
product = res.json()
{
  "id": 123,
  "sku": "XW46X7E086",
  "name": "Elegant Concrete Table",
  "slug": "elegant-concrete-table-123",
  "description": "New teal Table with ergonomic design for athletic comfort",
  "category": "clothing",
  "brand": "Kozey, Hintz and Haley",
  "price": 54.09,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 26,
  "rating": 3.4,
  "ratingCount": 4520,
  "imageUrl": "https://picsum.photos/seed/product-123/800/800",
  "createdAt": "2026-03-24T11:20:12.873Z",
  "updatedAt": "2026-05-17T19:57:15.314Z"
}
Draftbit