Recycled Gold Car
Olson, Treutel and Greenfelder
USD44.85
In stock
★ 3.9 (608)
Professional-grade Sausages perfect for sore training and recreational use
- Category
- kitchen
products / #122
Olson, Treutel and Greenfelder
USD44.85
In stock
★ 3.9 (608)
Professional-grade Sausages perfect for sore training and recreational use
curl -sS \
"https://example-data.com/api/v1/products/122" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/122"
);
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/122"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/122"
)
product = res.json() {
"id": 122,
"sku": "9NI6P92JUQ",
"name": "Recycled Gold Car",
"slug": "recycled-gold-car-122",
"description": "Professional-grade Sausages perfect for sore training and recreational use",
"category": "kitchen",
"brand": "Olson, Treutel and Greenfelder",
"price": 44.85,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 147,
"rating": 3.9,
"ratingCount": 608,
"imageUrl": "https://picsum.photos/seed/product-122/800/800",
"createdAt": "2025-09-21T08:43:59.893Z",
"updatedAt": "2025-10-06T13:26:06.284Z"
}