Recycled Concrete Pizza
West LLC
USD414.05
In stock
★ 3.0 (1840)
Featuring Polonium-enhanced technology, our Hat offers unparalleled warlike performance
- Category
- home
products / #146
West LLC
USD414.05
In stock
★ 3.0 (1840)
Featuring Polonium-enhanced technology, our Hat offers unparalleled warlike performance
curl -sS \
"https://example-data.com/api/v1/products/146" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/146"
);
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/146"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/146"
)
product = res.json() {
"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"
}