Oriental Wooden Pizza
Murazik and Sons
USD223.79 USD163.36
In stock
★ 3.2 (253)
The Diverse static system engine Cheese offers reliable performance and miserable design
- Category
- kitchen
Overview
products / #80
Murazik and Sons
USD223.79 USD163.36
In stock
★ 3.2 (253)
The Diverse static system engine Cheese offers reliable performance and miserable design
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/80" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/80" ); 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/80"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/80"
)
product = res.json() Response
{
"id": 80,
"sku": "SR7QWL6B77",
"name": "Oriental Wooden Pizza",
"slug": "oriental-wooden-pizza-80",
"description": "The Diverse static system engine Cheese offers reliable performance and miserable design",
"category": "kitchen",
"brand": "Murazik and Sons",
"price": 223.79,
"salePrice": 163.36,
"currency": "USD",
"inStock": true,
"stockCount": 212,
"rating": 3.2,
"ratingCount": 253,
"imageUrl": "https://picsum.photos/seed/product-80/800/800",
"createdAt": "2025-07-24T01:59:13.082Z",
"updatedAt": "2026-03-13T18:58:57.420Z"
}