Handmade Bronze Pizza
Dickinson Group
USD364.29 USD301.41
In stock
★ 2.6 (2559)
Discover the squiggly new Computer with an exciting mix of Aluminum ingredients
- Category
- kitchen
products / #96
Dickinson Group
USD364.29 USD301.41
In stock
★ 2.6 (2559)
Discover the squiggly new Computer with an exciting mix of Aluminum ingredients
curl -sS \
"https://example-data.com/api/v1/products/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/96"
);
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/96"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/96"
)
product = res.json() {
"id": 96,
"sku": "N9QOAIFSLD",
"name": "Handmade Bronze Pizza",
"slug": "handmade-bronze-pizza-96",
"description": "Discover the squiggly new Computer with an exciting mix of Aluminum ingredients",
"category": "kitchen",
"brand": "Dickinson Group",
"price": 364.29,
"salePrice": 301.41,
"currency": "USD",
"inStock": true,
"stockCount": 483,
"rating": 2.6,
"ratingCount": 2559,
"imageUrl": "https://picsum.photos/seed/product-96/800/800",
"createdAt": "2026-01-02T12:18:23.415Z",
"updatedAt": "2026-02-03T08:54:44.834Z"
}