example-data.com

products / #68

Gorgeous Metal Shirt

Gorgeous Metal Shirt

Renner, Hyatt and Ritchie

USD99.56

In stock

★ 1.9 (586)

Stylish Pizza designed to make you stand out with frail looks

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/68"
)
product = res.json()
{
  "id": 68,
  "sku": "P1DP1S1C0D",
  "name": "Gorgeous Metal Shirt",
  "slug": "gorgeous-metal-shirt-68",
  "description": "Stylish Pizza designed to make you stand out with frail looks",
  "category": "kitchen",
  "brand": "Renner, Hyatt and Ritchie",
  "price": 99.56,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 236,
  "rating": 1.9,
  "ratingCount": 586,
  "imageUrl": "https://picsum.photos/seed/product-68/800/800",
  "createdAt": "2025-05-22T03:53:02.553Z",
  "updatedAt": "2026-02-24T07:56:24.018Z"
}
Draftbit