Elegant Granite Sausages
Sauer, Mills and Gorczany
USD225.20
In stock
★ 3.7 (4393)
The sky blue Pizza combines Saint Helena aesthetics with Vanadium-based durability
- Category
- beauty
products / #39
Sauer, Mills and Gorczany
USD225.20
In stock
★ 3.7 (4393)
The sky blue Pizza combines Saint Helena aesthetics with Vanadium-based durability
curl -sS \
"https://example-data.com/api/v1/products/39" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/39"
);
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/39"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/39"
)
product = res.json() {
"id": 39,
"sku": "3A3CW6Q1N9",
"name": "Elegant Granite Sausages",
"slug": "elegant-granite-sausages-39",
"description": "The sky blue Pizza combines Saint Helena aesthetics with Vanadium-based durability",
"category": "beauty",
"brand": "Sauer, Mills and Gorczany",
"price": 225.2,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 384,
"rating": 3.7,
"ratingCount": 4393,
"imageUrl": "https://picsum.photos/seed/product-39/800/800",
"createdAt": "2025-11-01T08:52:14.660Z",
"updatedAt": "2026-02-06T04:34:31.213Z"
}