example-data.com

products / #25

Soft Gold Chips

Soft Gold Chips

Barrows and Sons

USD226.49

In stock

★ 1.2 (179)

The Future-proofed global encoding Mouse offers reliable performance and bitter design

Category
books

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/25"
)
product = res.json()
{
  "id": 25,
  "sku": "E7V3TKJGIV",
  "name": "Soft Gold Chips",
  "slug": "soft-gold-chips-25",
  "description": "The Future-proofed global encoding Mouse offers reliable performance and bitter design",
  "category": "books",
  "brand": "Barrows and Sons",
  "price": 226.49,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 233,
  "rating": 1.2,
  "ratingCount": 179,
  "imageUrl": "https://picsum.photos/seed/product-25/800/800",
  "createdAt": "2025-11-08T01:07:32.032Z",
  "updatedAt": "2026-02-25T00:27:30.225Z"
}
Draftbit