example-data.com

products / #93

Intelligent Ceramic Table

Intelligent Ceramic Table

Schaefer, Schmeler and O'Connell

USD170.95

In stock

★ 1.9 (2227)

The teal Ball combines Norway aesthetics with Moscovium-based durability

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/93"
)
product = res.json()
{
  "id": 93,
  "sku": "JYILAL9CYU",
  "name": "Intelligent Ceramic Table",
  "slug": "intelligent-ceramic-table-93",
  "description": "The teal Ball combines Norway aesthetics with Moscovium-based durability",
  "category": "home",
  "brand": "Schaefer, Schmeler and O'Connell",
  "price": 170.95,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 96,
  "rating": 1.9,
  "ratingCount": 2227,
  "imageUrl": "https://picsum.photos/seed/product-93/800/800",
  "createdAt": "2024-09-15T10:51:02.163Z",
  "updatedAt": "2025-09-20T12:43:11.210Z"
}
Draftbit