example-data.com

products / #176

Tasty Marble Table

Tasty Marble Table

Franey and Sons

USD312.89

Out of stock

★ 2.8 (2772)

Savor the delicious essence in our Car, designed for scornful culinary adventures

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/176"
)
product = res.json()
{
  "id": 176,
  "sku": "O0XQKLACQ6",
  "name": "Tasty Marble Table",
  "slug": "tasty-marble-table-176",
  "description": "Savor the delicious essence in our Car, designed for scornful culinary adventures",
  "category": "toys",
  "brand": "Franey and Sons",
  "price": 312.89,
  "salePrice": null,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 2.8,
  "ratingCount": 2772,
  "imageUrl": "https://picsum.photos/seed/product-176/800/800",
  "createdAt": "2025-07-21T13:02:12.475Z",
  "updatedAt": "2025-11-15T22:41:42.216Z"
}
Draftbit