Recycled Concrete Pizza
West LLC
USD414.05
In stock
★ 3.0 (1840)
Featuring Polonium-enhanced technology, our Hat offers unparalleled warlike performance
- Category
- home
Overview
products / #146
West LLC
USD414.05
In stock
★ 3.0 (1840)
Featuring Polonium-enhanced technology, our Hat offers unparalleled warlike performance
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/146" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/146" ); 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/146"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/146"
)
product = res.json() Response
{
"id": 146,
"sku": "R2P64XSDMO",
"name": "Recycled Concrete Pizza",
"slug": "recycled-concrete-pizza-146",
"description": "Featuring Polonium-enhanced technology, our Hat offers unparalleled warlike performance",
"category": "home",
"brand": "West LLC",
"price": 414.05,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 23,
"rating": 3,
"ratingCount": 1840,
"imageUrl": "https://picsum.photos/seed/product-146/800/800",
"createdAt": "2025-06-25T16:19:32.936Z",
"updatedAt": "2025-12-21T00:18:01.135Z"
}