example-data.com

products / #97

Oriental Cotton Bacon

Oriental Cotton Bacon

Predovic, Feil and Leffler

USD426.39

Out of stock

★ 4.3 (3344)

The black Hat combines Jamaica aesthetics with Thorium-based durability

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/97"
)
product = res.json()
{
  "id": 97,
  "sku": "VWY7D2DDH8",
  "name": "Oriental Cotton Bacon",
  "slug": "oriental-cotton-bacon-97",
  "description": "The black Hat combines Jamaica aesthetics with Thorium-based durability",
  "category": "toys",
  "brand": "Predovic, Feil and Leffler",
  "price": 426.39,
  "salePrice": null,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 4.3,
  "ratingCount": 3344,
  "imageUrl": "https://picsum.photos/seed/product-97/800/800",
  "createdAt": "2024-12-05T01:06:45.313Z",
  "updatedAt": "2025-03-02T01:21:43.072Z"
}
Draftbit