example-data.com

products / #190

Luxurious Wooden Table

Luxurious Wooden Table

Runte LLC

USD195.98

In stock

★ 2.9 (80)

The Litzy Pants is the latest in a series of both products from Kuphal LLC

Category
books

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/190"
)
product = res.json()
{
  "id": 190,
  "sku": "T9X7WHV937",
  "name": "Luxurious Wooden Table",
  "slug": "luxurious-wooden-table-190",
  "description": "The Litzy Pants is the latest in a series of both products from Kuphal LLC",
  "category": "books",
  "brand": "Runte LLC",
  "price": 195.98,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 225,
  "rating": 2.9,
  "ratingCount": 80,
  "imageUrl": "https://picsum.photos/seed/product-190/800/800",
  "createdAt": "2025-12-03T13:36:56.322Z",
  "updatedAt": "2025-12-20T04:27:48.098Z"
}
Draftbit