example-data.com

products / #28

Gorgeous Rubber Pizza

Gorgeous Rubber Pizza

Hamill, Bradtke and O'Connell

USD130.75

In stock

★ 2.6 (549)

New Chips model with 59 GB RAM, 72 GB storage, and crafty features

Category
clothing

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/28"
)
product = res.json()
{
  "id": 28,
  "sku": "4X0U36PGS6",
  "name": "Gorgeous Rubber Pizza",
  "slug": "gorgeous-rubber-pizza-28",
  "description": "New Chips model with 59 GB RAM, 72 GB storage, and crafty features",
  "category": "clothing",
  "brand": "Hamill, Bradtke and O'Connell",
  "price": 130.75,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 152,
  "rating": 2.6,
  "ratingCount": 549,
  "imageUrl": "https://picsum.photos/seed/product-28/800/800",
  "createdAt": "2025-03-22T03:32:26.536Z",
  "updatedAt": "2025-09-08T07:59:52.546Z"
}
Draftbit