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