example-data.com

products / #174

Elegant Ceramic Chips

Elegant Ceramic Chips

Kling - Reynolds

USD495.15 USD283.12

In stock

★ 2.7 (3205)

Discover the shark-like agility of our Fish, perfect for dependent users

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/174"
)
product = res.json()
{
  "id": 174,
  "sku": "9CBVROYI6X",
  "name": "Elegant Ceramic Chips",
  "slug": "elegant-ceramic-chips-174",
  "description": "Discover the shark-like agility of our Fish, perfect for dependent users",
  "category": "toys",
  "brand": "Kling - Reynolds",
  "price": 495.15,
  "salePrice": 283.12,
  "currency": "USD",
  "inStock": true,
  "stockCount": 5,
  "rating": 2.7,
  "ratingCount": 3205,
  "imageUrl": "https://picsum.photos/seed/product-174/800/800",
  "createdAt": "2025-11-16T22:04:46.269Z",
  "updatedAt": "2026-01-12T08:33:04.425Z"
}
Draftbit