example-data.com

products / #34

Gorgeous Aluminum Table

Gorgeous Aluminum Table

Friesen and Sons

USD405.95 USD287.47

In stock

★ 2.5 (3659)

Ergonomic Table made with Steel for all-day defensive support

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/34"
)
product = res.json()
{
  "id": 34,
  "sku": "Z5HBOS4FFM",
  "name": "Gorgeous Aluminum Table",
  "slug": "gorgeous-aluminum-table-34",
  "description": "Ergonomic Table made with Steel for all-day defensive support",
  "category": "kitchen",
  "brand": "Friesen and Sons",
  "price": 405.95,
  "salePrice": 287.47,
  "currency": "USD",
  "inStock": true,
  "stockCount": 314,
  "rating": 2.5,
  "ratingCount": 3659,
  "imageUrl": "https://picsum.photos/seed/product-34/800/800",
  "createdAt": "2024-10-17T07:15:56.377Z",
  "updatedAt": "2024-11-18T18:50:53.459Z"
}
Draftbit