example-data.com

products / #51

Frozen Gold Chips

Frozen Gold Chips

Heller and Sons

USD113.85

In stock

★ 3.8 (3836)

Introducing the Grenada-inspired Chicken, blending ripe style with local craftsmanship

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/51"
)
product = res.json()
{
  "id": 51,
  "sku": "28UEMYWOF7",
  "name": "Frozen Gold Chips",
  "slug": "frozen-gold-chips-51",
  "description": "Introducing the Grenada-inspired Chicken, blending ripe style with local craftsmanship",
  "category": "sports",
  "brand": "Heller and Sons",
  "price": 113.85,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 150,
  "rating": 3.8,
  "ratingCount": 3836,
  "imageUrl": "https://picsum.photos/seed/product-51/800/800",
  "createdAt": "2025-10-12T16:53:54.924Z",
  "updatedAt": "2026-01-17T17:36:20.381Z"
}
Draftbit