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
Overview
products / #51
Heller and Sons
USD113.85
In stock
★ 3.8 (3836)
Introducing the Grenada-inspired Chicken, blending ripe style with local craftsmanship
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/51" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/51" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/51"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/51"
)
product = res.json() Response
{
"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"
}