example-data.com

products / #172

Intelligent Plastic Table

Intelligent Plastic Table

Russel, Kling and Parisian

USD121.95 USD80.50

Out of stock

★ 4.3 (4953)

New violet Shoes with ergonomic design for decent comfort

Category
books

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/172"
)
product = res.json()
{
  "id": 172,
  "sku": "HG8RQUSWW6",
  "name": "Intelligent Plastic Table",
  "slug": "intelligent-plastic-table-172",
  "description": "New violet Shoes with ergonomic design for decent comfort",
  "category": "books",
  "brand": "Russel, Kling and Parisian",
  "price": 121.95,
  "salePrice": 80.5,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 4.3,
  "ratingCount": 4953,
  "imageUrl": "https://picsum.photos/seed/product-172/800/800",
  "createdAt": "2025-12-16T00:44:40.853Z",
  "updatedAt": "2026-05-16T12:35:25.446Z"
}
Draftbit