example-data.com

products / #31

Sleek Ceramic Pizza

Sleek Ceramic Pizza

Fritsch and Sons

USD42.99

In stock

★ 3.8 (1598)

Our elephant-friendly Keyboard ensures pleased comfort for your pets

Category
electronics

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/31"
)
product = res.json()
{
  "id": 31,
  "sku": "1A62QJXLMO",
  "name": "Sleek Ceramic Pizza",
  "slug": "sleek-ceramic-pizza-31",
  "description": "Our elephant-friendly Keyboard ensures pleased comfort for your pets",
  "category": "electronics",
  "brand": "Fritsch and Sons",
  "price": 42.99,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 284,
  "rating": 3.8,
  "ratingCount": 1598,
  "imageUrl": "https://picsum.photos/seed/product-31/800/800",
  "createdAt": "2026-02-02T01:01:57.831Z",
  "updatedAt": "2026-03-12T13:30:46.765Z"
}
Draftbit