example-data.com

products / #111

Oriental Gold Chips

Oriental Gold Chips

Yost - Schumm

USD281.90 USD242.59

In stock

★ 2.1 (912)

Stylish Keyboard designed to make you stand out with short looks

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/111"
)
product = res.json()
{
  "id": 111,
  "sku": "OYUMGV2EJM",
  "name": "Oriental Gold Chips",
  "slug": "oriental-gold-chips-111",
  "description": "Stylish Keyboard designed to make you stand out with short looks",
  "category": "beauty",
  "brand": "Yost - Schumm",
  "price": 281.9,
  "salePrice": 242.59,
  "currency": "USD",
  "inStock": true,
  "stockCount": 347,
  "rating": 2.1,
  "ratingCount": 912,
  "imageUrl": "https://picsum.photos/seed/product-111/800/800",
  "createdAt": "2025-12-27T08:18:07.888Z",
  "updatedAt": "2026-01-26T14:04:34.316Z"
}
Draftbit