example-data.com

products / #94

Sleek Bronze Table

Sleek Bronze Table

Lang - Runte

USD181.09

In stock

★ 2.9 (3546)

Recycled Table designed with Cotton for shadowy performance

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/94"
)
product = res.json()
{
  "id": 94,
  "sku": "LOCNADDFPJ",
  "name": "Sleek Bronze Table",
  "slug": "sleek-bronze-table-94",
  "description": "Recycled Table designed with Cotton for shadowy performance",
  "category": "beauty",
  "brand": "Lang - Runte",
  "price": 181.09,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 7,
  "rating": 2.9,
  "ratingCount": 3546,
  "imageUrl": "https://picsum.photos/seed/product-94/800/800",
  "createdAt": "2025-12-27T16:21:55.799Z",
  "updatedAt": "2026-02-27T09:55:37.103Z"
}
Draftbit