example-data.com

products / #82

Tasty Steel Pizza

Tasty Steel Pizza

Pollich Inc

USD395.95

In stock

★ 2.7 (636)

The Prince Chair is the latest in a series of awesome products from McGlynn, Hilpert and Hauck

Category
books

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/82"
)
product = res.json()
{
  "id": 82,
  "sku": "74VB7N9UU5",
  "name": "Tasty Steel Pizza",
  "slug": "tasty-steel-pizza-82",
  "description": "The Prince Chair is the latest in a series of awesome products from McGlynn, Hilpert and Hauck",
  "category": "books",
  "brand": "Pollich Inc",
  "price": 395.95,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 416,
  "rating": 2.7,
  "ratingCount": 636,
  "imageUrl": "https://picsum.photos/seed/product-82/800/800",
  "createdAt": "2025-05-25T14:46:43.953Z",
  "updatedAt": "2026-02-04T18:16:39.780Z"
}
Draftbit