example-data.com

products / #100

Ergonomic Cotton Table

Ergonomic Cotton Table

Kuhic, Kuhic and Kub

USD474.39

In stock

★ 1.8 (1861)

Savor the spicy essence in our Fish, designed for unique culinary adventures

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/100"
)
product = res.json()
{
  "id": 100,
  "sku": "41NQ0U2EIW",
  "name": "Ergonomic Cotton Table",
  "slug": "ergonomic-cotton-table-100",
  "description": "Savor the spicy essence in our Fish, designed for unique culinary adventures",
  "category": "home",
  "brand": "Kuhic, Kuhic and Kub",
  "price": 474.39,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 239,
  "rating": 1.8,
  "ratingCount": 1861,
  "imageUrl": "https://picsum.photos/seed/product-100/800/800",
  "createdAt": "2025-01-06T11:34:56.380Z",
  "updatedAt": "2025-07-15T16:20:54.677Z"
}
Draftbit