Fresh Granite Bacon
Steuber, Hayes and Reichel
USD277.00
In stock
★ 2.7 (4255)
Discover the whale-like agility of our Shirt, perfect for sugary users
- Category
- sports
products / #198
Steuber, Hayes and Reichel
USD277.00
In stock
★ 2.7 (4255)
Discover the whale-like agility of our Shirt, perfect for sugary users
curl -sS \
"https://example-data.com/api/v1/products/198" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/198"
);
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/198"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/198"
)
product = res.json() {
"id": 198,
"sku": "7M992OEY1Z",
"name": "Fresh Granite Bacon",
"slug": "fresh-granite-bacon-198",
"description": "Discover the whale-like agility of our Shirt, perfect for sugary users",
"category": "sports",
"brand": "Steuber, Hayes and Reichel",
"price": 277,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 108,
"rating": 2.7,
"ratingCount": 4255,
"imageUrl": "https://picsum.photos/seed/product-198/800/800",
"createdAt": "2025-06-06T13:38:41.096Z",
"updatedAt": "2025-10-28T22:49:37.442Z"
}