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
Overview
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/96" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/96" ); 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/96"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/96"
)
product = res.json() Response
{
"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"
}